A variety of loose ends (#540)
authortsteven4 <13596209+tsteven4@users.noreply.github.com>
Thu, 16 Apr 2020 22:06:03 +0000 (16:06 -0600)
committerGitHub <noreply@github.com>
Thu, 16 Apr 2020 22:06:03 +0000 (16:06 -0600)
* misc cleanups.

clang-tidy found the Qstring passed by value.

Attempting to build the GUI without webengine or webkit with Qt 5.15
found the missing QT module (widgets) in app.pro.  It is required by QDialog.

* fiddle with document recipes.

add qmake target to generate gpsbabel.pdf.

drop --load-trace xsltproc options when building document.

set logging level for fop to WARN
by creating $HOME/.foprc if it doesn't exist.
fop doens't have the ability to override this on the command line.

* use .foprc in build tree.

This solves the issue on travis the $HOME doesn't exist.

It also avoids writing to the users home directory.

* fiddle with configure.

* filter with doc version stuff.

12 files changed:
.foprc [new file with mode: 0644]
GPSBabel.pro
Makefile.in
configure
configure.ac
format.h
gbversion.h
gui/app.pro
reference/filter1.txt
reference/format3.txt
testo.d/serialization.test
tools/mkcapabilities.in [changed mode: 0755->0644]

diff --git a/.foprc b/.foprc
new file mode 100644 (file)
index 0000000..23b3b17
--- /dev/null
+++ b/.foprc
@@ -0,0 +1 @@
+LOGLEVEL=-Dorg.apache.commons.logging.simplelog.defaultlog=WARN
index 0a2640d7e01bc28613f0287cca2fea82ca0227d2..9b162b63c8a5712c4508db2d34bec22716dafadc 100644 (file)
@@ -294,3 +294,13 @@ linux{
 
 cppcheck.commands = cppcheck --enable=all --force --config-exclude=zlib --config-exclude=shapelib $(INCPATH) $$ALL_FMTS $$FILTERS $$SUPPORT $$JEEPS
 QMAKE_EXTRA_TARGETS += cppcheck
+
+gpsbabel.pdf.depends = FORCE
+gpsbabel.pdf.commands += perl xmldoc/makedoc && 
+gpsbabel.pdf.commands += xmlwf xmldoc/readme.xml && #check for well-formedness
+gpsbabel.pdf.commands += xmllint --noout --valid xmldoc/readme.xml &&   #validate
+gpsbabel.pdf.commands += xsltproc -o gpsbabel.fo xmldoc/babelpdf.xsl xmldoc/readme.xml &&
+gpsbabel.pdf.commands += HOME=. fop -q -fo gpsbabel.fo -pdf gpsbabel.pdf
+#gpsbabel.pdf.commands += cp gpsbabel.pdf $(WEB)/htmldoc-$(DOCVERSION)/gpsbabel-$(DOCVERSION).pdf
+QMAKE_EXTRA_TARGETS += gpsbabel.pdf
+
index a0f6c3126c9c9a3e4527e0b34edc7c5be8e24170..1771cd8f45d4f0d61812bba031a08b0fb45d908b 100644 (file)
@@ -29,7 +29,6 @@ VERSIOND=$(VERSD)$(RELEASE)
 VERSIONU=$(VERSU)$(RELEASE)
 
 DOCVERSION=@DOCVERSION@
-DOCVERSION=development
 
 CC=@CC@
 CXX=@CXX@
@@ -239,13 +238,12 @@ $(WEB)/htmldoc-$(DOCVERSION)/index.html: FORCE
        perl xmldoc/makedoc
        xmlwf xmldoc/readme.xml         #check for well-formedness
        xmllint --noout --valid xmldoc/readme.xml       #validate
-       xsltproc --load-trace \
+       xsltproc \
         --stringparam base.dir "$(WEB)/htmldoc-$(DOCVERSION)/" \
         --stringparam root.filename "index" \
         xmldoc/babelmain.xsl \
         xmldoc/readme.xml
        tools/fixdoc $(WEB)/htmldoc-$(DOCVERSION) "GPSBabel $(DOCVERSION):"
-       chmod 755 tools/mkcapabilities
        tools/mkcapabilities
 
 #
@@ -267,16 +265,16 @@ gpsbabel.fo:  FORCE
        perl xmldoc/makedoc
        xmlwf xmldoc/readme.xml         #check for well-formedness
        xmllint --noout --valid xmldoc/readme.xml       #validate
-       xsltproc --load-trace -o $@ xmldoc/babelpdf.xsl xmldoc/readme.xml
+       xsltproc -o $@ xmldoc/babelpdf.xsl xmldoc/readme.xml
 
 gpsbabel.pdf: gpsbabel.fo
-       fop -q -fo gpsbabel.fo -pdf gpsbabel.pdf
+       HOME=. fop -q -fo gpsbabel.fo -pdf gpsbabel.pdf
        cp gpsbabel.pdf $(WEB)/htmldoc-$(DOCVERSION)/gpsbabel-$(DOCVERSION).pdf
 
 
 gpsbabel.html: FORCE # gpsbabel
        # perl xmldoc/makedoc
-       xsltproc --load-trace \
+       xsltproc \
          --output $@ \
          --stringparam toc.section.depth "1" \
          --stringparam html.cleanup "1" \
index ace1c36df8135e9ea7f08587a22686da0c18b6b0..375a7fdc1bbd06874a204fda84e76ee443e9bd23 100755 (executable)
--- a/configure
+++ b/configure
@@ -2211,7 +2211,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 DOCVERSION=1.6.0
 
 # YYYYMMDD, please, if beta, i.e. "-beta20060413"
-#DOCVERSION=development
+DOCVERSION=development
 
 
 # Increase GBBUILD for a new release (why? Where is this ever used?)
@@ -6464,7 +6464,7 @@ $as_echo_n "checking for docdir... " >&6; }
 if test "${with_doc+set}" = set; then :
   withval=$with_doc; DOCDIR="$withval"
 else
-  DOCDIR="../babelweb/"
+  DOCDIR="../babelweb"
 fi
 
 
@@ -6538,7 +6538,9 @@ as_dir=zlib/contrib/minizip; as_fn_mkdir_p
 as_dir=testo.d; as_fn_mkdir_p
 as_dir=mac/libusb; as_fn_mkdir_p
 
-ac_config_files="$ac_config_files Makefile gbversion.h gui/setup.iss xmldoc/makedoc tools/mkcapabilities win32/gpsbabel.rc"
+ac_config_files="$ac_config_files Makefile gbversion.h gui/setup.iss xmldoc/makedoc win32/gpsbabel.rc"
+
+ac_config_files="$ac_config_files tools/mkcapabilities"
 
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
@@ -7237,8 +7239,8 @@ do
     "gbversion.h") CONFIG_FILES="$CONFIG_FILES gbversion.h" ;;
     "gui/setup.iss") CONFIG_FILES="$CONFIG_FILES gui/setup.iss" ;;
     "xmldoc/makedoc") CONFIG_FILES="$CONFIG_FILES xmldoc/makedoc" ;;
-    "tools/mkcapabilities") CONFIG_FILES="$CONFIG_FILES tools/mkcapabilities" ;;
     "win32/gpsbabel.rc") CONFIG_FILES="$CONFIG_FILES win32/gpsbabel.rc" ;;
+    "tools/mkcapabilities") CONFIG_FILES="$CONFIG_FILES tools/mkcapabilities" ;;
 
   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
   esac
@@ -7789,6 +7791,11 @@ $as_echo "$as_me: $ac_file is unchanged" >&6;}
 
   esac
 
+
+  case $ac_file$ac_mode in
+    "tools/mkcapabilities":F) chmod +x tools/mkcapabilities ;;
+
+  esac
 done # for ac_tag
 
 
index 6ec5e70b8c3e1266189311dcce35cc9b68bf5258..4a03e867c2656b3d34b90be376822ca62bd87af5 100644 (file)
@@ -8,7 +8,7 @@ AC_INIT([GPSBabel], [1.6.0])
 DOCVERSION=1.6.0
 
 # YYYYMMDD, please, if beta, i.e. "-beta20060413"
-#DOCVERSION=development
+DOCVERSION=development
 
 
 # Increase GBBUILD for a new release (why? Where is this ever used?)
@@ -317,7 +317,7 @@ AC_ARG_WITH([doc],
                [--with-doc=DIR],
                [Path where the documentation will be stored.])],
        [DOCDIR="$withval"],
-       [DOCDIR="../babelweb/"])
+       [DOCDIR="../babelweb"])
 AC_SUBST(DOCDIR)
 AC_MSG_RESULT([$DOCDIR])
 
@@ -366,5 +366,6 @@ AS_MKDIR_P([zlib/contrib/minizip])
 AS_MKDIR_P([testo.d])
 AS_MKDIR_P([mac/libusb])
 
-AC_CONFIG_FILES([Makefile gbversion.h gui/setup.iss xmldoc/makedoc tools/mkcapabilities win32/gpsbabel.rc])
+AC_CONFIG_FILES([Makefile gbversion.h gui/setup.iss xmldoc/makedoc win32/gpsbabel.rc])
+AC_CONFIG_FILES([tools/mkcapabilities], [chmod +x tools/mkcapabilities])
 AC_OUTPUT
index f3f494e99330c5640a6f103d0db1e8ac1c7efcb3..43637df68fe3cad89559547ce5de7bf390482a7c 100644 (file)
--- a/format.h
+++ b/format.h
@@ -176,7 +176,7 @@ public:
     return name;
   }
 
-  void set_name(QString nm)
+  void set_name(const QString& nm)
   {
     name = nm;
   }
index 9b95bc38f167364382340f032814639bc7edc82e..df8382bb3d553d527784ed78aca4765520660ab1 100644 (file)
@@ -5,4 +5,4 @@
  * Isn't simplification via automation grand?
  */
 #define VERSION "1.6.0"
-#define WEB_DOC_DIR "https://www.gpsbabel.org/htmldoc-1.6.0"
+#define WEB_DOC_DIR "https://www.gpsbabel.org/htmldoc-development"
index 06919ccb28dd36af1b1ae284e450b38ebc547d32..4daefde480070b27a62304a4e2177057a6e8bced 100755 (executable)
@@ -11,6 +11,7 @@ ICON = images/appicon.icns
 QT += core \
       gui \
       network \
+      widgets \
       xml
 
 qtHaveModule(webenginewidgets) {
index 153e5d09aae79c695f43d5f5343703bdc60713cc..262824b131b87f9b4ccf627fb8c4cd1af14fa057 100644 (file)
-bend   Add points before and after bends in routes     https://www.gpsbabel.org/htmldoc-1.6.0/filter_bend.html
-option bend    distance        Distance to the bend in meters where the new points will be added       float   25                      https://www.gpsbabel.org/htmldoc-1.6.0/filter_bend.html#fmt_bend_o_distance
-option bend    minangle        Minimum bend angle in degrees   float   5                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_bend.html#fmt_bend_o_minangle
-polygon        Include Only Points Inside Polygon      https://www.gpsbabel.org/htmldoc-1.6.0/filter_polygon.html
-option polygon file    File containing vertices of polygon     file                            https://www.gpsbabel.org/htmldoc-1.6.0/filter_polygon.html#fmt_polygon_o_file
-option polygon exclude Exclude points inside the polygon       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_polygon.html#fmt_polygon_o_exclude
-arc    Include Only Points Within Distance of Arc      https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html
-option arc     file    File containing vertices of arc file                            https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_file
-option arc     rte     Route(s) are vertices of arc    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_rte
-option arc     trk     Track(s) are vertices of arc    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_trk
-option arc     distance        Maximum distance from arc       float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_distance
-option arc     exclude Exclude points close to the arc boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_exclude
-option arc     points  Use distance from vertices not lines    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_points
-option arc     project Move waypoints to its projection on lines or vertices   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_arc.html#fmt_arc_o_project
-radius Include Only Points Within Radius       https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html
-option radius  lat     Latitude for center point (D.DDDDD)     float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_lat
-option radius  lon     Longitude for center point (D.DDDDD)    float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_lon
-option radius  distance        Maximum distance from center    float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_distance
-option radius  exclude Exclude points close to center  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_exclude
-option radius  nosort  Inhibit sort by distance to center      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_nosort
-option radius  maxcount        Output no more than this number of points       integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_maxcount
-option radius  asroute Put resulting waypoints in route of this name   string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_radius.html#fmt_radius_o_asroute
-interpolate    Interpolate between trackpoints https://www.gpsbabel.org/htmldoc-1.6.0/filter_interpolate.html
-option interpolate     time    Time interval in seconds        integer         0               https://www.gpsbabel.org/htmldoc-1.6.0/filter_interpolate.html#fmt_interpolate_o_time
-option interpolate     distance        Distance interval in miles or kilometers        string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_interpolate.html#fmt_interpolate_o_distance
-option interpolate     route   Interpolate routes instead      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_interpolate.html#fmt_interpolate_o_route
-height Manipulate altitudes    https://www.gpsbabel.org/htmldoc-1.6.0/filter_height.html
-option height  add     Adds a constant value to every altitude (meter, append "f" (x.xxf) for feet)    float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_height.html#fmt_height_o_add
-option height  wgs84tomsl      Converts WGS84 ellipsoidal height to orthometric height (MSL)   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_height.html#fmt_height_o_wgs84tomsl
-track  Manipulate track lists  https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html
-option track   move    Correct trackpoint timestamps by a delta        string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_move
-option track   pack    Pack all tracks into one        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_pack
-option track   split   Split by date or time interval (see README)     string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_split
-option track   sdistance       Split by distance       string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_sdistance
-option track   merge   Merge multiple tracks for the same way  string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_merge
-option track   name    Use only track(s) where title matches given name        string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_name
-option track   start   Use only track points after this timestamp      integer                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_start
-option track   stop    Use only track points before this timestamp     integer                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_stop
-option track   title   Basic title for new track(s)    string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_title
-option track   fix     Synthesize GPS fixes (PPS, DGPS, 3D, 2D, NONE)  string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_fix
-option track   course  Synthesize course       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_course
-option track   speed   Synthesize speed        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_speed
-option track   seg2trk Split track at segment boundaries into multiple tracks  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_seg2trk
-option track   trk2seg Merge tracks inserting segment separators at boundaries boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_trk2seg
-option track   segment segment tracks with abnormally long gaps        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_segment
-option track   faketime        Add specified timestamp to each trackpoint      string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_faketime
-option track   discard Discard track points without timestamps during merge    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_discard
-option track   minimum_points  Discard tracks with fewer than these points     integer         0       50      https://www.gpsbabel.org/htmldoc-1.6.0/filter_track.html#fmt_track_o_minimum_points
-sort   Rearrange waypoints, routes and/or tracks by resorting  https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html
-option sort    description     Sort waypoints by description   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_description
-option sort    gcid    Sort waypoints by numeric geocache ID   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_gcid
-option sort    shortname       Sort waypoints by short name    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_shortname
-option sort    time    Sort waypoints by time  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_time
-option sort    rtedesc Sort routes by description      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_rtedesc
-option sort    rtename Sort routes by name     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_rtename
-option sort    rtenum  Sort routes by number   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_rtenum
-option sort    trkdesc Sort tracks by description      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_trkdesc
-option sort    trkname Sort tracks by name     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_trkname
-option sort    trknum  Sort tracks by number   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_sort.html#fmt_sort_o_trknum
-nuketypes      Remove all waypoints, tracks, or routes https://www.gpsbabel.org/htmldoc-1.6.0/filter_nuketypes.html
-option nuketypes       waypoints       Remove all waypoints from data stream   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_nuketypes.html#fmt_nuketypes_o_waypoints
-option nuketypes       tracks  Remove all tracks from data stream      boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_nuketypes.html#fmt_nuketypes_o_tracks
-option nuketypes       routes  Remove all routes from data stream      boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_nuketypes.html#fmt_nuketypes_o_routes
-duplicate      Remove Duplicates       https://www.gpsbabel.org/htmldoc-1.6.0/filter_duplicate.html
-option duplicate       shortname       Suppress duplicate waypoints based on name      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_duplicate.html#fmt_duplicate_o_shortname
-option duplicate       location        Suppress duplicate waypoint based on coords     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_duplicate.html#fmt_duplicate_o_location
-option duplicate       all     Suppress all instances of duplicates    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_duplicate.html#fmt_duplicate_o_all
-option duplicate       correct Use coords from duplicate points        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_duplicate.html#fmt_duplicate_o_correct
-position       Remove Points Within Distance   https://www.gpsbabel.org/htmldoc-1.6.0/filter_position.html
-option position        distance        Maximum positional distance     float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_position.html#fmt_position_o_distance
-option position        all     Suppress all points close to other points       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_position.html#fmt_position_o_all
-option position        time    Maximum time in seconds between two points      float                           https://www.gpsbabel.org/htmldoc-1.6.0/filter_position.html#fmt_position_o_time
-discard        Remove unreliable points with high hdop or vdop https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html
-option discard hdop    Suppress points with higher hdop        float   -1.0                    https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_hdop
-option discard vdop    Suppress points with higher vdop        float   -1.0                    https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_vdop
-option discard hdopandvdop     Link hdop and vdop suppression with AND boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_hdopandvdop
-option discard sat     Minimum sats to keep points     integer -1.0                    https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_sat
-option discard fixnone Suppress points without fix     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_fixnone
-option discard fixunknown      Suppress points with unknown fix        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_fixunknown
-option discard elemin  Suppress points below given elevation in meters integer                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_elemin
-option discard elemax  Suppress points above given elevation in meters integer                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_elemax
-option discard matchname       Suppress points where name matches given name   string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_matchname
-option discard matchdesc       Suppress points where description matches given name    string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_matchdesc
-option discard matchcmt        Suppress points where comment matches given name        string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_matchcmt
-option discard matchicon       Suppress points where type matches given name   string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_discard.html#fmt_discard_o_matchicon
-reverse        Reverse stops within routes     https://www.gpsbabel.org/htmldoc-1.6.0/filter_reverse.html
-stack  Save and restore waypoint lists https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html
-option stack   push    Push waypoint list onto stack   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_push
-option stack   pop     Pop waypoint list from stack    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_pop
-option stack   swap    Swap waypoint list with <depth> item on stack   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_swap
-option stack   copy    (push) Copy waypoint list       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_copy
-option stack   append  (pop) Append list       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_append
-option stack   discard (pop) Discard top of stack      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_discard
-option stack   replace (pop) Replace list (default)    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_replace
-option stack   depth   (swap) Item to use (default=1)  integer         0               https://www.gpsbabel.org/htmldoc-1.6.0/filter_stack.html#fmt_stack_o_depth
-simplify       Simplify routes https://www.gpsbabel.org/htmldoc-1.6.0/filter_simplify.html
-option simplify        count   Maximum number of points in route       integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/filter_simplify.html#fmt_simplify_o_count
-option simplify        error   Maximum error   string          0               https://www.gpsbabel.org/htmldoc-1.6.0/filter_simplify.html#fmt_simplify_o_error
-option simplify        crosstrack      Use cross-track error (default) boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_simplify.html#fmt_simplify_o_crosstrack
-option simplify        length  Use arclength error     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_simplify.html#fmt_simplify_o_length
-option simplify        relative        Use relative error      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/filter_simplify.html#fmt_simplify_o_relative
-swap   Swap latitude and longitude of all loaded points        https://www.gpsbabel.org/htmldoc-1.6.0/filter_swap.html
-transform      Transform waypoints into a route, tracks into routes, ...       https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html
-option transform       wpt     Transform track(s) or route(s) into waypoint(s) [R/T]   string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html#fmt_transform_o_wpt
-option transform       rte     Transform waypoint(s) or track(s) into route(s) [W/T]   string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html#fmt_transform_o_rte
-option transform       trk     Transform waypoint(s) or route(s) into tracks(s) [W/R]  string                          https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html#fmt_transform_o_trk
-option transform       rptdigits       Number of digits in generated names     integer         2               https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html#fmt_transform_o_rptdigits
-option transform       rptname Use source name for route point names   boolean N                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html#fmt_transform_o_rptname
-option transform       del     Delete source data after transformation boolean N                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_transform.html#fmt_transform_o_del
-validate       Validate internal data structures       https://www.gpsbabel.org/htmldoc-1.6.0/filter_validate.html
-option validate        checkempty      Check for empty input   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_validate.html#fmt_validate_o_checkempty
-option validate        debug   Output debug messages instead of possibly issuing a fatal error boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/filter_validate.html#fmt_validate_o_debug
+bend   Add points before and after bends in routes     https://www.gpsbabel.org/WEB_DOC_DIR/filter_bend.html
+option bend    distance        Distance to the bend in meters where the new points will be added       float   25                      https://www.gpsbabel.org/WEB_DOC_DIR/filter_bend.html#fmt_bend_o_distance
+option bend    minangle        Minimum bend angle in degrees   float   5                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_bend.html#fmt_bend_o_minangle
+polygon        Include Only Points Inside Polygon      https://www.gpsbabel.org/WEB_DOC_DIR/filter_polygon.html
+option polygon file    File containing vertices of polygon     file                            https://www.gpsbabel.org/WEB_DOC_DIR/filter_polygon.html#fmt_polygon_o_file
+option polygon exclude Exclude points inside the polygon       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_polygon.html#fmt_polygon_o_exclude
+arc    Include Only Points Within Distance of Arc      https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html
+option arc     file    File containing vertices of arc file                            https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_file
+option arc     rte     Route(s) are vertices of arc    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_rte
+option arc     trk     Track(s) are vertices of arc    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_trk
+option arc     distance        Maximum distance from arc       float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_distance
+option arc     exclude Exclude points close to the arc boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_exclude
+option arc     points  Use distance from vertices not lines    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_points
+option arc     project Move waypoints to its projection on lines or vertices   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_arc.html#fmt_arc_o_project
+radius Include Only Points Within Radius       https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html
+option radius  lat     Latitude for center point (D.DDDDD)     float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_lat
+option radius  lon     Longitude for center point (D.DDDDD)    float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_lon
+option radius  distance        Maximum distance from center    float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_distance
+option radius  exclude Exclude points close to center  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_exclude
+option radius  nosort  Inhibit sort by distance to center      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_nosort
+option radius  maxcount        Output no more than this number of points       integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_maxcount
+option radius  asroute Put resulting waypoints in route of this name   string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_radius.html#fmt_radius_o_asroute
+interpolate    Interpolate between trackpoints https://www.gpsbabel.org/WEB_DOC_DIR/filter_interpolate.html
+option interpolate     time    Time interval in seconds        integer         0               https://www.gpsbabel.org/WEB_DOC_DIR/filter_interpolate.html#fmt_interpolate_o_time
+option interpolate     distance        Distance interval in miles or kilometers        string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_interpolate.html#fmt_interpolate_o_distance
+option interpolate     route   Interpolate routes instead      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_interpolate.html#fmt_interpolate_o_route
+height Manipulate altitudes    https://www.gpsbabel.org/WEB_DOC_DIR/filter_height.html
+option height  add     Adds a constant value to every altitude (meter, append "f" (x.xxf) for feet)    float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_height.html#fmt_height_o_add
+option height  wgs84tomsl      Converts WGS84 ellipsoidal height to orthometric height (MSL)   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_height.html#fmt_height_o_wgs84tomsl
+track  Manipulate track lists  https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html
+option track   move    Correct trackpoint timestamps by a delta        string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_move
+option track   pack    Pack all tracks into one        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_pack
+option track   split   Split by date or time interval (see README)     string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_split
+option track   sdistance       Split by distance       string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_sdistance
+option track   merge   Merge multiple tracks for the same way  string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_merge
+option track   name    Use only track(s) where title matches given name        string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_name
+option track   start   Use only track points after this timestamp      integer                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_start
+option track   stop    Use only track points before this timestamp     integer                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_stop
+option track   title   Basic title for new track(s)    string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_title
+option track   fix     Synthesize GPS fixes (PPS, DGPS, 3D, 2D, NONE)  string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_fix
+option track   course  Synthesize course       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_course
+option track   speed   Synthesize speed        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_speed
+option track   seg2trk Split track at segment boundaries into multiple tracks  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_seg2trk
+option track   trk2seg Merge tracks inserting segment separators at boundaries boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_trk2seg
+option track   segment segment tracks with abnormally long gaps        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_segment
+option track   faketime        Add specified timestamp to each trackpoint      string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_faketime
+option track   discard Discard track points without timestamps during merge    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_discard
+option track   minimum_points  Discard tracks with fewer than these points     integer         0       50      https://www.gpsbabel.org/WEB_DOC_DIR/filter_track.html#fmt_track_o_minimum_points
+sort   Rearrange waypoints, routes and/or tracks by resorting  https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html
+option sort    description     Sort waypoints by description   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_description
+option sort    gcid    Sort waypoints by numeric geocache ID   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_gcid
+option sort    shortname       Sort waypoints by short name    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_shortname
+option sort    time    Sort waypoints by time  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_time
+option sort    rtedesc Sort routes by description      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_rtedesc
+option sort    rtename Sort routes by name     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_rtename
+option sort    rtenum  Sort routes by number   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_rtenum
+option sort    trkdesc Sort tracks by description      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_trkdesc
+option sort    trkname Sort tracks by name     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_trkname
+option sort    trknum  Sort tracks by number   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_sort.html#fmt_sort_o_trknum
+nuketypes      Remove all waypoints, tracks, or routes https://www.gpsbabel.org/WEB_DOC_DIR/filter_nuketypes.html
+option nuketypes       waypoints       Remove all waypoints from data stream   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_nuketypes.html#fmt_nuketypes_o_waypoints
+option nuketypes       tracks  Remove all tracks from data stream      boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_nuketypes.html#fmt_nuketypes_o_tracks
+option nuketypes       routes  Remove all routes from data stream      boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_nuketypes.html#fmt_nuketypes_o_routes
+duplicate      Remove Duplicates       https://www.gpsbabel.org/WEB_DOC_DIR/filter_duplicate.html
+option duplicate       shortname       Suppress duplicate waypoints based on name      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_duplicate.html#fmt_duplicate_o_shortname
+option duplicate       location        Suppress duplicate waypoint based on coords     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_duplicate.html#fmt_duplicate_o_location
+option duplicate       all     Suppress all instances of duplicates    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_duplicate.html#fmt_duplicate_o_all
+option duplicate       correct Use coords from duplicate points        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_duplicate.html#fmt_duplicate_o_correct
+position       Remove Points Within Distance   https://www.gpsbabel.org/WEB_DOC_DIR/filter_position.html
+option position        distance        Maximum positional distance     float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_position.html#fmt_position_o_distance
+option position        all     Suppress all points close to other points       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_position.html#fmt_position_o_all
+option position        time    Maximum time in seconds between two points      float                           https://www.gpsbabel.org/WEB_DOC_DIR/filter_position.html#fmt_position_o_time
+discard        Remove unreliable points with high hdop or vdop https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html
+option discard hdop    Suppress points with higher hdop        float   -1.0                    https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_hdop
+option discard vdop    Suppress points with higher vdop        float   -1.0                    https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_vdop
+option discard hdopandvdop     Link hdop and vdop suppression with AND boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_hdopandvdop
+option discard sat     Minimum sats to keep points     integer -1.0                    https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_sat
+option discard fixnone Suppress points without fix     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_fixnone
+option discard fixunknown      Suppress points with unknown fix        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_fixunknown
+option discard elemin  Suppress points below given elevation in meters integer                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_elemin
+option discard elemax  Suppress points above given elevation in meters integer                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_elemax
+option discard matchname       Suppress points where name matches given name   string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_matchname
+option discard matchdesc       Suppress points where description matches given name    string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_matchdesc
+option discard matchcmt        Suppress points where comment matches given name        string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_matchcmt
+option discard matchicon       Suppress points where type matches given name   string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_discard.html#fmt_discard_o_matchicon
+reverse        Reverse stops within routes     https://www.gpsbabel.org/WEB_DOC_DIR/filter_reverse.html
+stack  Save and restore waypoint lists https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html
+option stack   push    Push waypoint list onto stack   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_push
+option stack   pop     Pop waypoint list from stack    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_pop
+option stack   swap    Swap waypoint list with <depth> item on stack   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_swap
+option stack   copy    (push) Copy waypoint list       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_copy
+option stack   append  (pop) Append list       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_append
+option stack   discard (pop) Discard top of stack      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_discard
+option stack   replace (pop) Replace list (default)    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_replace
+option stack   depth   (swap) Item to use (default=1)  integer         0               https://www.gpsbabel.org/WEB_DOC_DIR/filter_stack.html#fmt_stack_o_depth
+simplify       Simplify routes https://www.gpsbabel.org/WEB_DOC_DIR/filter_simplify.html
+option simplify        count   Maximum number of points in route       integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/filter_simplify.html#fmt_simplify_o_count
+option simplify        error   Maximum error   string          0               https://www.gpsbabel.org/WEB_DOC_DIR/filter_simplify.html#fmt_simplify_o_error
+option simplify        crosstrack      Use cross-track error (default) boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_simplify.html#fmt_simplify_o_crosstrack
+option simplify        length  Use arclength error     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_simplify.html#fmt_simplify_o_length
+option simplify        relative        Use relative error      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/filter_simplify.html#fmt_simplify_o_relative
+swap   Swap latitude and longitude of all loaded points        https://www.gpsbabel.org/WEB_DOC_DIR/filter_swap.html
+transform      Transform waypoints into a route, tracks into routes, ...       https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html
+option transform       wpt     Transform track(s) or route(s) into waypoint(s) [R/T]   string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html#fmt_transform_o_wpt
+option transform       rte     Transform waypoint(s) or track(s) into route(s) [W/T]   string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html#fmt_transform_o_rte
+option transform       trk     Transform waypoint(s) or route(s) into tracks(s) [W/R]  string                          https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html#fmt_transform_o_trk
+option transform       rptdigits       Number of digits in generated names     integer         2               https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html#fmt_transform_o_rptdigits
+option transform       rptname Use source name for route point names   boolean N                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html#fmt_transform_o_rptname
+option transform       del     Delete source data after transformation boolean N                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_transform.html#fmt_transform_o_del
+validate       Validate internal data structures       https://www.gpsbabel.org/WEB_DOC_DIR/filter_validate.html
+option validate        checkempty      Check for empty input   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_validate.html#fmt_validate_o_checkempty
+option validate        debug   Output debug messages instead of possibly issuing a fatal error boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/filter_validate.html#fmt_validate_o_debug
index ca3501c71aa19905e84f41a51586ed4aaa2f0b9a..2e94d8ffc1d63c7d9727b5e40949911ad4d0cd04 100644 (file)
 internal       rw----  xcsv            ? Character Separated Values    xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html
-option xcsv    style   Full path to XCSV style file    file                            https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_style
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html
+option xcsv    style   Full path to XCSV style file    file                            https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_style
 
-option xcsv    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_snlen
+option xcsv    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snlen
 
-option xcsv    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_snwhite
+option xcsv    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snwhite
 
-option xcsv    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_snupper
+option xcsv    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snupper
 
-option xcsv    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_snunique
+option xcsv    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snunique
 
-option xcsv    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_urlbase
+option xcsv    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_urlbase
 
-option xcsv    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_prefer_shortnames
+option xcsv    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_prefer_shortnames
 
-option xcsv    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xcsv.html#fmt_xcsv_o_datum
+option xcsv    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_datum
 
 file   --rw--  alantrl trl     Alan Map500 tracklogs (.trl)    alantrl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_alantrl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_alantrl.html
 file   rw--rw  alanwpr wpr     Alan Map500 waypoints and routes (.wpr) alanwpr
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_alanwpr.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_alanwpr.html
 internal       rw----  tabsep          All database fields on one tab-separated line   xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html
-option tabsep  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html
+option tabsep  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snlen
 
-option tabsep  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_snwhite
+option tabsep  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snwhite
 
-option tabsep  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_snupper
+option tabsep  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snupper
 
-option tabsep  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_snunique
+option tabsep  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snunique
 
-option tabsep  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_urlbase
+option tabsep  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_urlbase
 
-option tabsep  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_prefer_shortnames
+option tabsep  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_prefer_shortnames
 
-option tabsep  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tabsep.html#fmt_tabsep_o_datum
+option tabsep  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_datum
 
 serial --r---  baroiq          Brauniger IQ Series Barograph Download  baroiq
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_baroiq.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_baroiq.html
 file   --rw--  bushnell_trl    trl     Bushnell GPS Trail file bushnell_trl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bushnell_trl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bushnell_trl.html
 file   rw----  bushnell        wpt     Bushnell GPS Waypoint file      bushnell
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bushnell.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bushnell.html
 file   rw----  cambridge       dat     Cambridge/Winpilot glider software      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html
-option cambridge       snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html
+option cambridge       snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snlen
 
-option cambridge       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_snwhite
+option cambridge       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snwhite
 
-option cambridge       snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_snupper
+option cambridge       snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snupper
 
-option cambridge       snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_snunique
+option cambridge       snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snunique
 
-option cambridge       urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_urlbase
+option cambridge       urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_urlbase
 
-option cambridge       prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_prefer_shortnames
+option cambridge       prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_prefer_shortnames
 
-option cambridge       datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cambridge.html#fmt_cambridge_o_datum
+option cambridge       datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_datum
 
 file   r-r-r-  cst     cst     CarteSurTable data file cst
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cst.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cst.html
 file   r-r---  v900            Columbus/Visiontac V900 files (.csv)    v900
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_v900.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_v900.html
 file   rw----  csv             Comma separated values  xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html
-option csv     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html
+option csv     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snlen
 
-option csv     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_snwhite
+option csv     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snwhite
 
-option csv     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_snupper
+option csv     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snupper
 
-option csv     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_snunique
+option csv     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snunique
 
-option csv     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_urlbase
+option csv     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_urlbase
 
-option csv     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_prefer_shortnames
+option csv     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_prefer_shortnames
 
-option csv     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_csv.html#fmt_csv_o_datum
+option csv     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_datum
 
 file   rwrwrw  compegps                CompeGPS data files (.wpt/.trk/.rte)    compegps
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_compegps.html
-option compegps        deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_compegps.html#fmt_compegps_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html
+option compegps        deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_deficon
 
-option compegps        index   Index of route/track to write (if more than one in source)      integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_compegps.html#fmt_compegps_o_index
+option compegps        index   Index of route/track to write (if more than one in source)      integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_index
 
-option compegps        radius  Give points (waypoints/route points) a default radius (proximity)       float           0               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_compegps.html#fmt_compegps_o_radius
+option compegps        radius  Give points (waypoints/route points) a default radius (proximity)       float           0               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_radius
 
-option compegps        snlen   Length of generated shortnames (default 16)     integer 16      1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_compegps.html#fmt_compegps_o_snlen
+option compegps        snlen   Length of generated shortnames (default 16)     integer 16      1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_snlen
 
 internal       rw----  custom          Custom "Everything" Style       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html
-option custom  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html
+option custom  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snlen
 
-option custom  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_snwhite
+option custom  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snwhite
 
-option custom  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_snupper
+option custom  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snupper
 
-option custom  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_snunique
+option custom  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snunique
 
-option custom  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_urlbase
+option custom  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_urlbase
 
-option custom  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_prefer_shortnames
+option custom  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_prefer_shortnames
 
-option custom  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_custom.html#fmt_custom_o_datum
+option custom  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_datum
 
 file   --rw--  iblue747        csv     Data Logger iBlue747 csv        xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html
-option iblue747        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html
+option iblue747        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snlen
 
-option iblue747        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_snwhite
+option iblue747        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snwhite
 
-option iblue747        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_snupper
+option iblue747        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snupper
 
-option iblue747        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_snunique
+option iblue747        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snunique
 
-option iblue747        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_urlbase
+option iblue747        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_urlbase
 
-option iblue747        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_prefer_shortnames
+option iblue747        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_prefer_shortnames
 
-option iblue747        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue747.html#fmt_iblue747_o_datum
+option iblue747        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_datum
 
 file   --rw--  iblue757        csv     Data Logger iBlue757 csv        xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html
-option iblue757        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html
+option iblue757        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snlen
 
-option iblue757        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_snwhite
+option iblue757        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snwhite
 
-option iblue757        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_snupper
+option iblue757        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snupper
 
-option iblue757        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_snunique
+option iblue757        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snunique
 
-option iblue757        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_urlbase
+option iblue757        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_urlbase
 
-option iblue757        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_prefer_shortnames
+option iblue757        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_prefer_shortnames
 
-option iblue757        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_iblue757.html#fmt_iblue757_o_datum
+option iblue757        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_datum
 
 file   rw-wrw  an1     an1     DeLorme .an1 (drawing) file     an1
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html
-option an1     type    Type of .an1 file       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_type
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html
+option an1     type    Type of .an1 file       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_type
 
-option an1     road    Road type changes       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_road
+option an1     road    Road type changes       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_road
 
-option an1     nogc    Do not add geocache data to description boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_nogc
+option an1     nogc    Do not add geocache data to description boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_nogc
 
-option an1     nourl   Do not add URLs to description  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_nourl
+option an1     nourl   Do not add URLs to description  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_nourl
 
-option an1     deficon Symbol to use for point data    string  Red Flag                        https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_deficon
+option an1     deficon Symbol to use for point data    string  Red Flag                        https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_deficon
 
-option an1     color   Color for lines or mapnotes     string  red                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_color
+option an1     color   Color for lines or mapnotes     string  red                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_color
 
-option an1     zoom    Zoom level to reduce points     integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_zoom
+option an1     zoom    Zoom level to reduce points     integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_zoom
 
-option an1     wpt_type        Waypoint type   string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_wpt_type
+option an1     wpt_type        Waypoint type   string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_wpt_type
 
-option an1     radius  Radius for circles      string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_an1.html#fmt_an1_o_radius
+option an1     radius  Radius for circles      string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_radius
 
 file   --rw--  gpl     gpl     DeLorme GPL     gpl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpl.html
 file   rw----  saplus          DeLorme Street Atlas Plus       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html
-option saplus  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html
+option saplus  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snlen
 
-option saplus  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_snwhite
+option saplus  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snwhite
 
-option saplus  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_snupper
+option saplus  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snupper
 
-option saplus  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_snunique
+option saplus  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snunique
 
-option saplus  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_urlbase
+option saplus  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_urlbase
 
-option saplus  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_prefer_shortnames
+option saplus  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_prefer_shortnames
 
-option saplus  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saplus.html#fmt_saplus_o_datum
+option saplus  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_datum
 
 file   --r---  saroute anr     DeLorme Street Atlas Route      saroute
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saroute.html
-option saroute turns_important Keep turns if simplify filter is used   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saroute.html#fmt_saroute_o_turns_important
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html
+option saroute turns_important Keep turns if simplify filter is used   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_turns_important
 
-option saroute turns_only      Only read turns; skip all other points  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saroute.html#fmt_saroute_o_turns_only
+option saroute turns_only      Only read turns; skip all other points  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_turns_only
 
-option saroute split   Split into multiple routes at turns     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saroute.html#fmt_saroute_o_split
+option saroute split   Split into multiple routes at turns     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_split
 
-option saroute controls        Read control points as waypoint/route/none      string  none                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saroute.html#fmt_saroute_o_controls
+option saroute controls        Read control points as waypoint/route/none      string  none                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_controls
 
-option saroute times   Synthesize track times  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_saroute.html#fmt_saroute_o_times
+option saroute times   Synthesize track times  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_times
 
 file   rw----  xmap    wpt     DeLorme XMap HH Native .WPT     xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html
-option xmap    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html
+option xmap    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snlen
 
-option xmap    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_snwhite
+option xmap    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snwhite
 
-option xmap    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_snupper
+option xmap    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snupper
 
-option xmap    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_snunique
+option xmap    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snunique
 
-option xmap    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_urlbase
+option xmap    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_urlbase
 
-option xmap    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_prefer_shortnames
+option xmap    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_prefer_shortnames
 
-option xmap    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap.html#fmt_xmap_o_datum
+option xmap    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_datum
 
 file   rw----  xmap2006        txt     DeLorme XMap/SAHH 2006 Native .TXT      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html
-option xmap2006        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html
+option xmap2006        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snlen
 
-option xmap2006        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_snwhite
+option xmap2006        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snwhite
 
-option xmap2006        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_snupper
+option xmap2006        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snupper
 
-option xmap2006        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_snunique
+option xmap2006        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snunique
 
-option xmap2006        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_urlbase
+option xmap2006        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_urlbase
 
-option xmap2006        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_prefer_shortnames
+option xmap2006        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_prefer_shortnames
 
-option xmap2006        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmap2006.html#fmt_xmap2006_o_datum
+option xmap2006        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_datum
 
 file   rw----  xmapwpt         DeLorme XMat HH Street Atlas USA .WPT (PPC)     xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html
-option xmapwpt snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html
+option xmapwpt snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snlen
 
-option xmapwpt snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_snwhite
+option xmapwpt snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snwhite
 
-option xmapwpt snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_snupper
+option xmapwpt snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snupper
 
-option xmapwpt snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_snunique
+option xmapwpt snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snunique
 
-option xmapwpt urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_urlbase
+option xmapwpt urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_urlbase
 
-option xmapwpt prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_prefer_shortnames
+option xmapwpt prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_prefer_shortnames
 
-option xmapwpt datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xmapwpt.html#fmt_xmapwpt_o_datum
+option xmapwpt datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_datum
 
 file   ----rw  destinator_itn  dat     Destinator Itineraries (.dat)   destinator_itn
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_destinator_itn.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_itn.html
 file   rw----  destinator_poi  dat     Destinator Points of Interest (.dat)    destinator_poi
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_destinator_poi.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_poi.html
 file   --rw--  destinator_trl  dat     Destinator TrackLogs (.dat)     destinator_trl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_destinator_trl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_trl.html
 file   rw----  easygps loc     EasyGPS binary format   easygps
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_easygps.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_easygps.html
 file   rw----  exif    jpg     Embedded Exif-GPS data (.jpg)   exif
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_exif.html
-option exif    filename        Set waypoint name to source filename    boolean Y                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_exif.html#fmt_exif_o_filename
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html
+option exif    filename        Set waypoint name to source filename    boolean Y                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_filename
 
-option exif    frame   Time-frame (in seconds) integer 10      0               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_exif.html#fmt_exif_o_frame
+option exif    frame   Time-frame (in seconds) integer 10      0               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_frame
 
-option exif    name    Locate waypoint for tagging by this name        string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_exif.html#fmt_exif_o_name
+option exif    name    Locate waypoint for tagging by this name        string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_name
 
-option exif    overwrite       !OVERWRITE! the original file. Default=N        boolean N                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_exif.html#fmt_exif_o_overwrite
+option exif    overwrite       !OVERWRITE! the original file. Default=N        boolean N                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_overwrite
 
 file   --r---  energympro      cpo     Energympro GPS training watch   energympro
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_energympro.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_energympro.html
 file   ----rw  enigma  ert     Enigma binary waypoint file (.ert)      enigma
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_enigma.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_enigma.html
 file   rwrwrw  shape   shp     ESRI shapefile  shape
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_shape.html
-option shape   name    Source for name field in .dbf   string          0               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_shape.html#fmt_shape_o_name
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_shape.html
+option shape   name    Source for name field in .dbf   string          0               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_shape.html#fmt_shape_o_name
 
-option shape   url     Source for URL field in .dbf    string          0               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_shape.html#fmt_shape_o_url
+option shape   url     Source for URL field in .dbf    string          0               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_shape.html#fmt_shape_o_url
 
 file   --r---  f90g    map     F90G Automobile DVR GPS log file        f90g
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_f90g.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_f90g.html
 file   --rwrw  igc             FAI/IGC Flight Recorder Data Format     igc
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igc.html
-option igc     timeadj (integer sec or 'auto') Barograph to GPS time diff      string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igc.html#fmt_igc_o_timeadj
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igc.html
+option igc     timeadj (integer sec or 'auto') Barograph to GPS time diff      string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igc.html#fmt_igc_o_timeadj
 
 file   -wrw--  garmin_fit      fit     Flexible and Interoperable Data Transfer (FIT) Activity file    garmin_fit
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_fit.html
-option garmin_fit      allpoints       Read all points even if latitude or longitude is missing        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_fit.html#fmt_garmin_fit_o_allpoints
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_fit.html
+option garmin_fit      allpoints       Read all points even if latitude or longitude is missing        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_fit.html#fmt_garmin_fit_o_allpoints
 
 file   rw----  flysight        csv     FlySight GPS File       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html
-option flysight        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html
+option flysight        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snlen
 
-option flysight        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_snwhite
+option flysight        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snwhite
 
-option flysight        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_snupper
+option flysight        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snupper
 
-option flysight        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_snunique
+option flysight        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snunique
 
-option flysight        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_urlbase
+option flysight        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_urlbase
 
-option flysight        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_prefer_shortnames
+option flysight        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_prefer_shortnames
 
-option flysight        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_flysight.html#fmt_flysight_o_datum
+option flysight        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_datum
 
 file   -w-w-w  gpssim  gpssim  Franson GPSGate Simulation      gpssim
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpssim.html
-option gpssim  wayptspd        Default speed for waypoints (knots/hr)  float                           https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpssim.html#fmt_gpssim_o_wayptspd
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpssim.html
+option gpssim  wayptspd        Default speed for waypoints (knots/hr)  float                           https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpssim.html#fmt_gpssim_o_wayptspd
 
-option gpssim  split   Split input into separate files boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpssim.html#fmt_gpssim_o_split
+option gpssim  split   Split input into separate files boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpssim.html#fmt_gpssim_o_split
 
 file   rw----  fugawi  txt     Fugawi  xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html
-option fugawi  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html
+option fugawi  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snlen
 
-option fugawi  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_snwhite
+option fugawi  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snwhite
 
-option fugawi  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_snupper
+option fugawi  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snupper
 
-option fugawi  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_snunique
+option fugawi  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snunique
 
-option fugawi  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_urlbase
+option fugawi  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_urlbase
 
-option fugawi  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_prefer_shortnames
+option fugawi  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_prefer_shortnames
 
-option fugawi  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_fugawi.html#fmt_fugawi_o_datum
+option fugawi  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_datum
 
 file   r-r-r-  g7towin g7t     G7ToWin data files (.g7t)       g7towin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_g7towin.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_g7towin.html
 file   rw----  garmin301               Garmin 301 Custom position and heartrate        xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html
-option garmin301       snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html
+option garmin301       snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snlen
 
-option garmin301       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_snwhite
+option garmin301       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snwhite
 
-option garmin301       snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_snupper
+option garmin301       snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snupper
 
-option garmin301       snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_snunique
+option garmin301       snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snunique
 
-option garmin301       urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_urlbase
+option garmin301       urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_urlbase
 
-option garmin301       prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_prefer_shortnames
+option garmin301       prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_prefer_shortnames
 
-option garmin301       datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin301.html#fmt_garmin301_o_datum
+option garmin301       datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_datum
 
 file   --rw--  garmin_g1000    csv     Garmin G1000 datalog input filter file  xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html
-option garmin_g1000    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html
+option garmin_g1000    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snlen
 
-option garmin_g1000    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snwhite
+option garmin_g1000    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snwhite
 
-option garmin_g1000    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snupper
+option garmin_g1000    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snupper
 
-option garmin_g1000    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snunique
+option garmin_g1000    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snunique
 
-option garmin_g1000    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_urlbase
+option garmin_g1000    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_urlbase
 
-option garmin_g1000    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_prefer_shortnames
+option garmin_g1000    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_prefer_shortnames
 
-option garmin_g1000    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_g1000.html#fmt_garmin_g1000_o_datum
+option garmin_g1000    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_datum
 
 file   --rw--  glogbook        xml     Garmin Logbook XML      glogbook
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_glogbook.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_glogbook.html
 file   rwrwrw  gdb     gdb     Garmin MapSource - gdb  gdb
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gdb.html
-option gdb     cat     Default category on output (1..16)      integer         1       16      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gdb.html#fmt_gdb_o_cat
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html
+option gdb     cat     Default category on output (1..16)      integer         1       16      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_cat
 
-option gdb     bitscategory    Bitmap of categories    integer         1       65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gdb.html#fmt_gdb_o_bitscategory
+option gdb     bitscategory    Bitmap of categories    integer         1       65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_bitscategory
 
-option gdb     ver     Version of gdb file to generate (1..3)  integer 2       1       3       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gdb.html#fmt_gdb_o_ver
+option gdb     ver     Version of gdb file to generate (1..3)  integer 2       1       3       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_ver
 
-option gdb     via     Drop route points that do not have an equivalent waypoint (hidden points)       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gdb.html#fmt_gdb_o_via
+option gdb     via     Drop route points that do not have an equivalent waypoint (hidden points)       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_via
 
-option gdb     roadbook        Include major turn points (with description) from calculated route      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gdb.html#fmt_gdb_o_roadbook
+option gdb     roadbook        Include major turn points (with description) from calculated route      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_roadbook
 
 file   rwrwrw  mapsource       mps     Garmin MapSource - mps  mapsource
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html
-option mapsource       snlen   Length of generated shortnames  integer 10      1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html#fmt_mapsource_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html
+option mapsource       snlen   Length of generated shortnames  integer 10      1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html#fmt_mapsource_o_snlen
 
-option mapsource       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html#fmt_mapsource_o_snwhite
+option mapsource       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html#fmt_mapsource_o_snwhite
 
-option mapsource       mpsverout       Version of mapsource file to generate (3,4,5)   integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html#fmt_mapsource_o_mpsverout
+option mapsource       mpsverout       Version of mapsource file to generate (3,4,5)   integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html#fmt_mapsource_o_mpsverout
 
-option mapsource       mpsmergeout     Merge output with existing file boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html#fmt_mapsource_o_mpsmergeout
+option mapsource       mpsmergeout     Merge output with existing file boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html#fmt_mapsource_o_mpsmergeout
 
-option mapsource       mpsusedepth     Use depth values on output (default is ignore)  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html#fmt_mapsource_o_mpsusedepth
+option mapsource       mpsusedepth     Use depth values on output (default is ignore)  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html#fmt_mapsource_o_mpsusedepth
 
-option mapsource       mpsuseprox      Use proximity values on output (default is ignore)      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsource.html#fmt_mapsource_o_mpsuseprox
+option mapsource       mpsuseprox      Use proximity values on output (default is ignore)      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsource.html#fmt_mapsource_o_mpsuseprox
 
 file   rwrwrw  garmin_txt      txt     Garmin MapSource - txt (tab delimited)  garmin_txt
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html
-option garmin_txt      date    Read/Write date format (i.e. yyyy/mm/dd)        string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_date
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html
+option garmin_txt      date    Read/Write date format (i.e. yyyy/mm/dd)        string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_date
 
-option garmin_txt      datum   GPS datum (def. WGS 84) string  WGS 84                  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_datum
+option garmin_txt      datum   GPS datum (def. WGS 84) string  WGS 84                  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_datum
 
-option garmin_txt      dist    Distance unit [m=metric, s=statute]     string  m                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_dist
+option garmin_txt      dist    Distance unit [m=metric, s=statute]     string  m                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_dist
 
-option garmin_txt      grid    Write position using this grid. string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_grid
+option garmin_txt      grid    Write position using this grid. string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_grid
 
-option garmin_txt      prec    Precision of coordinates        integer 3                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_prec
+option garmin_txt      prec    Precision of coordinates        integer 3                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_prec
 
-option garmin_txt      temp    Temperature unit [c=Celsius, f=Fahrenheit]      string  c                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_temp
+option garmin_txt      temp    Temperature unit [c=Celsius, f=Fahrenheit]      string  c                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_temp
 
-option garmin_txt      time    Read/Write time format (i.e. HH:mm:ss xx)       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_time
+option garmin_txt      time    Read/Write time format (i.e. HH:mm:ss xx)       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_time
 
-option garmin_txt      utc     Write timestamps with offset x to UTC time      integer         -23     +23     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_txt.html#fmt_garmin_txt_o_utc
+option garmin_txt      utc     Write timestamps with offset x to UTC time      integer         -23     +23     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_utc
 
 file   rwrwrw  pcx     pcx     Garmin PCX5     pcx
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_pcx.html
-option pcx     deficon Default icon name       string  Waypoint                        https://www.gpsbabel.org/htmldoc-1.6.0/fmt_pcx.html#fmt_pcx_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pcx.html
+option pcx     deficon Default icon name       string  Waypoint                        https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pcx.html#fmt_pcx_o_deficon
 
-option pcx     cartoexploreur  Write tracks compatible with Carto Exploreur    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_pcx.html#fmt_pcx_o_cartoexploreur
+option pcx     cartoexploreur  Write tracks compatible with Carto Exploreur    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pcx.html#fmt_pcx_o_cartoexploreur
 
 file   rw----  garmin_poi              Garmin POI database     xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html
-option garmin_poi      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html
+option garmin_poi      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snlen
 
-option garmin_poi      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_snwhite
+option garmin_poi      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snwhite
 
-option garmin_poi      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_snupper
+option garmin_poi      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snupper
 
-option garmin_poi      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_snunique
+option garmin_poi      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snunique
 
-option garmin_poi      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_urlbase
+option garmin_poi      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_urlbase
 
-option garmin_poi      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_prefer_shortnames
+option garmin_poi      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_prefer_shortnames
 
-option garmin_poi      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_poi.html#fmt_garmin_poi_o_datum
+option garmin_poi      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_datum
 
 file   rw----  garmin_gpi      gpi     Garmin Points of Interest (.gpi)        garmin_gpi
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html
-option garmin_gpi      alerts  Enable alerts on speed or proximity distance    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_alerts
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html
+option garmin_gpi      alerts  Enable alerts on speed or proximity distance    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_alerts
 
-option garmin_gpi      bitmap  Use specified bitmap on output  file                            https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_bitmap
+option garmin_gpi      bitmap  Use specified bitmap on output  file                            https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_bitmap
 
-option garmin_gpi      category        Default category on output      string  My points                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_category
+option garmin_gpi      category        Default category on output      string  My points                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_category
 
-option garmin_gpi      hide    Don't show gpi bitmap on device boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_hide
+option garmin_gpi      hide    Don't show gpi bitmap on device boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_hide
 
-option garmin_gpi      descr   Write description to address field      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_descr
+option garmin_gpi      descr   Write description to address field      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_descr
 
-option garmin_gpi      notes   Write notes to address field    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_notes
+option garmin_gpi      notes   Write notes to address field    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_notes
 
-option garmin_gpi      position        Write position to address field boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_position
+option garmin_gpi      position        Write position to address field boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_position
 
-option garmin_gpi      proximity       Default proximity       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_proximity
+option garmin_gpi      proximity       Default proximity       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_proximity
 
-option garmin_gpi      sleep   After output job done sleep n second(s) integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_sleep
+option garmin_gpi      sleep   After output job done sleep n second(s) integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_sleep
 
-option garmin_gpi      speed   Default speed   string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_speed
+option garmin_gpi      speed   Default speed   string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_speed
 
-option garmin_gpi      unique  Create unique waypoint names (default = yes)    boolean Y                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_unique
+option garmin_gpi      unique  Create unique waypoint names (default = yes)    boolean Y                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_unique
 
-option garmin_gpi      units   Units used for names with @speed ('s'tatute or 'm'etric)        string  m                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_units
+option garmin_gpi      units   Units used for names with @speed ('s'tatute or 'm'etric)        string  m                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_units
 
-option garmin_gpi      writecodec      codec to use for writing strings        string  windows-1252                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_writecodec
+option garmin_gpi      writecodec      codec to use for writing strings        string  windows-1252                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_writecodec
 
-option garmin_gpi      languagecode    language code to use for reading dual language files    string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_gpi.html#fmt_garmin_gpi_o_languagecode
+option garmin_gpi      languagecode    language code to use for reading dual language files    string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_languagecode
 
 serial rwrwrw  garmin          Garmin serial/USB protocol      garmin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html
-option garmin  snlen   Length of generated shortnames  integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html
+option garmin  snlen   Length of generated shortnames  integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_snlen
 
-option garmin  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_snwhite
+option garmin  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_snwhite
 
-option garmin  deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_deficon
+option garmin  deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_deficon
 
-option garmin  get_posn        Return current position as a waypoint   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_get_posn
+option garmin  get_posn        Return current position as a waypoint   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_get_posn
 
-option garmin  power_off       Command unit to power itself down       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_power_off
+option garmin  power_off       Command unit to power itself down       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_power_off
 
-option garmin  erase_t Erase existing courses when writing new ones    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_erase_t
+option garmin  erase_t Erase existing courses when writing new ones    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_erase_t
 
-option garmin  resettime       Sync GPS time to computer time  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_resettime
+option garmin  resettime       Sync GPS time to computer time  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_resettime
 
-option garmin  category        Category number to use for written waypoints    integer         1       16      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_category
+option garmin  category        Category number to use for written waypoints    integer         1       16      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_category
 
-option garmin  bitscategory    Bitmap of categories    integer         1       65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_bitscategory
+option garmin  bitscategory    Bitmap of categories    integer         1       65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_bitscategory
 
-option garmin  baud    Speed in bits per second of serial port (baud=9600)     integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin.html#fmt_garmin_o_baud
+option garmin  baud    Speed in bits per second of serial port (baud=9600)     integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_baud
 
 file   r-rw--  gtrnctr tcx/crs/hst/xml Garmin Training Center (.tcx/.crs/.hst/.xml)    gtrnctr
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gtrnctr.html
-option gtrnctr course  Write course rather than history, default yes   boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gtrnctr.html#fmt_gtrnctr_o_course
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtrnctr.html
+option gtrnctr course  Write course rather than history, default yes   boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtrnctr.html#fmt_gtrnctr_o_course
 
-option gtrnctr sport   Sport: Biking (deflt), Running, MultiSport, Other       string  Biking                  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gtrnctr.html#fmt_gtrnctr_o_sport
+option gtrnctr sport   Sport: Biking (deflt), Running, MultiSport, Other       string  Biking                  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtrnctr.html#fmt_gtrnctr_o_sport
 
 file   rw----  geo     loc     Geocaching.com .loc     geo
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geo.html
-option geo     deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geo.html#fmt_geo_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geo.html
+option geo     deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geo.html#fmt_geo_o_deficon
 
-option geo     nuke_placer     Omit Placer name        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geo.html#fmt_geo_o_nuke_placer
+option geo     nuke_placer     Omit Placer name        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geo.html#fmt_geo_o_nuke_placer
 
 file   rwrwrw  ggv_ovl ovl     Geogrid-Viewer ascii overlay file (.ovl)        ggv_ovl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ggv_ovl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ggv_ovl.html
 file   --r---  ggv_bin ovl     Geogrid-Viewer binary overlay file (.ovl)       ggv_bin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ggv_bin.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ggv_bin.html
 file   --rw--  ggv_log log     Geogrid-Viewer tracklogs (.log) ggv_log
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ggv_log.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ggv_log.html
 file   rwrwrw  geojson json    GeoJson geojson
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geojson.html
-option geojson compact Compact Output. Default is off. boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geojson.html#fmt_geojson_o_compact
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geojson.html
+option geojson compact Compact Output. Default is off. boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geojson.html#fmt_geojson_o_compact
 
 file   rw----  geonet  txt     GEOnet Names Server (GNS)       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html
-option geonet  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html
+option geonet  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snlen
 
-option geonet  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_snwhite
+option geonet  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snwhite
 
-option geonet  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_snupper
+option geonet  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snupper
 
-option geonet  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_snunique
+option geonet  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snunique
 
-option geonet  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_urlbase
+option geonet  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_urlbase
 
-option geonet  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_prefer_shortnames
+option geonet  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_prefer_shortnames
 
-option geonet  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_geonet.html#fmt_geonet_o_datum
+option geonet  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_datum
 
 serial r-r---  dg-100          GlobalSat DG-100/BT-335 Download        dg-100
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dg-100.html
-option dg-100  erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dg-100.html#fmt_dg-100_o_erase
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100.html
+option dg-100  erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100.html#fmt_dg-100_o_erase
 
-option dg-100  erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dg-100.html#fmt_dg-100_o_erase_only
+option dg-100  erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100.html#fmt_dg-100_o_erase_only
 
 serial r-r---  dg-200          GlobalSat DG-200 Download       dg-200
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dg-200.html
-option dg-200  erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dg-200.html#fmt_dg-200_o_erase
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200.html
+option dg-200  erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200.html#fmt_dg-200_o_erase
 
-option dg-200  erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dg-200.html#fmt_dg-200_o_erase_only
+option dg-200  erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200.html#fmt_dg-200_o_erase_only
 
 serial --r---  globalsat               GlobalSat GH625XT GPS training watch    globalsat
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_globalsat.html
-option globalsat       showlist        list tracks     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_globalsat.html#fmt_globalsat_o_showlist
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html
+option globalsat       showlist        list tracks     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_showlist
 
-option globalsat       track   get track       integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_globalsat.html#fmt_globalsat_o_track
+option globalsat       track   get track       integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_track
 
-option globalsat       dump-file       Dump raw data to this file      outfile                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_globalsat.html#fmt_globalsat_o_dump-file
+option globalsat       dump-file       Dump raw data to this file      outfile                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_dump-file
 
-option globalsat       input-is-dump-file      Dump raw data to this file      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_globalsat.html#fmt_globalsat_o_input-is-dump-file
+option globalsat       input-is-dump-file      Dump raw data to this file      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_input-is-dump-file
 
 file   --r---  googledir       xml     Google Directions XML   googledir
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_googledir.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_googledir.html
 file   rwrwrw  kml     kml     Google Earth (Keyhole) Markup Language  kml
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html
-option kml     deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html
+option kml     deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_deficon
 
-option kml     lines   Export linestrings for tracks and routes        boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_lines
+option kml     lines   Export linestrings for tracks and routes        boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_lines
 
-option kml     points  Export placemarks for tracks and routes boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_points
+option kml     points  Export placemarks for tracks and routes boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_points
 
-option kml     line_width      Width of lines, in pixels       integer 6                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_line_width
+option kml     line_width      Width of lines, in pixels       integer 6                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_line_width
 
-option kml     line_color      Line color, specified in hex AABBGGRR   string  99ffac59                        https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_line_color
+option kml     line_color      Line color, specified in hex AABBGGRR   string  99ffac59                        https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_line_color
 
-option kml     floating        Altitudes are absolute and not clamped to ground        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_floating
+option kml     floating        Altitudes are absolute and not clamped to ground        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_floating
 
-option kml     extrude Draw extrusion line from trackpoint to ground   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_extrude
+option kml     extrude Draw extrusion line from trackpoint to ground   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_extrude
 
-option kml     track   Write KML track (default = 0)   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_track
+option kml     track   Write KML track (default = 0)   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_track
 
-option kml     trackdata       Include extended data for trackpoints (default = 1)     boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_trackdata
+option kml     trackdata       Include extended data for trackpoints (default = 1)     boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_trackdata
 
-option kml     trackdirection  Indicate direction of travel in track icons (default = 0)       boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_trackdirection
+option kml     trackdirection  Indicate direction of travel in track icons (default = 0)       boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_trackdirection
 
-option kml     units   Units used when writing comments ('s'tatute, 'm'etric,' 'n'autical, 'a'viation) string  s                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_units
+option kml     units   Units used when writing comments ('s'tatute, 'm'etric,' 'n'autical, 'a'viation) string  s                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_units
 
-option kml     labels  Display labels on track and routepoints  (default = 1)  boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_labels
+option kml     labels  Display labels on track and routepoints  (default = 1)  boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_labels
 
-option kml     max_position_points     Retain at most this number of position points  (0 = unlimited)  integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_max_position_points
+option kml     max_position_points     Retain at most this number of position points  (0 = unlimited)  integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_max_position_points
 
-option kml     rotate_colors   Rotate colors for tracks and routes (default automatic) float           0       360     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_rotate_colors
+option kml     rotate_colors   Rotate colors for tracks and routes (default automatic) float           0       360     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_rotate_colors
 
-option kml     prec    Precision of coordinates, number of decimals    integer 6                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kml.html#fmt_kml_o_prec
+option kml     prec    Precision of coordinates, number of decimals    integer 6                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_prec
 
 file   --rw--  gnav_trl        trl     Google Navigator Tracklines (.trl)      gnav_trl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gnav_trl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gnav_trl.html
 file   --rw--  gopal   trk     GoPal GPS track log (.trk)      gopal
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gopal.html
-option gopal   date    Complete date-free tracks with given date (YYYYMMDD).   integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gopal.html#fmt_gopal_o_date
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html
+option gopal   date    Complete date-free tracks with given date (YYYYMMDD).   integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_date
 
-option gopal   maxspeed        The maximum speed (km/h) traveling from waypoint to waypoint.   integer 200     1       1000    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gopal.html#fmt_gopal_o_maxspeed
+option gopal   maxspeed        The maximum speed (km/h) traveling from waypoint to waypoint.   integer 200     1       1000    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_maxspeed
 
-option gopal   minspeed        The minimum speed (km/h) traveling from waypoint to waypoint. Set >0 to remove duplicate waypoints      integer 0       0       999     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gopal.html#fmt_gopal_o_minspeed
+option gopal   minspeed        The minimum speed (km/h) traveling from waypoint to waypoint. Set >0 to remove duplicate waypoints      integer 0       0       999     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_minspeed
 
-option gopal   clean   Cleanup common errors in trackdata      boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gopal.html#fmt_gopal_o_clean
+option gopal   clean   Cleanup common errors in trackdata      boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_clean
 
 file   --rw--  land_air_sea    txt     GPS Tracking Key Pro text       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html
-option land_air_sea    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html
+option land_air_sea    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snlen
 
-option land_air_sea    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_snwhite
+option land_air_sea    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snwhite
 
-option land_air_sea    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_snupper
+option land_air_sea    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snupper
 
-option land_air_sea    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_snunique
+option land_air_sea    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snunique
 
-option land_air_sea    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_urlbase
+option land_air_sea    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_urlbase
 
-option land_air_sea    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_prefer_shortnames
+option land_air_sea    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_prefer_shortnames
 
-option land_air_sea    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_land_air_sea.html#fmt_land_air_sea_o_datum
+option land_air_sea    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_datum
 
 file   rwrwrw  gtm     gtm     GPS TrackMaker  gtm
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gtm.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtm.html
 file   rw----  arc     txt     GPSBabel arc filter file        xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html
-option arc     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html
+option arc     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snlen
 
-option arc     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_snwhite
+option arc     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snwhite
 
-option arc     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_snupper
+option arc     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snupper
 
-option arc     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_snunique
+option arc     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snunique
 
-option arc     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_urlbase
+option arc     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_urlbase
 
-option arc     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_prefer_shortnames
+option arc     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_prefer_shortnames
 
-option arc     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_arc.html#fmt_arc_o_datum
+option arc     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_datum
 
 file   rw----  gpsdrive                GpsDrive Format xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html
-option gpsdrive        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html
+option gpsdrive        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snlen
 
-option gpsdrive        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_snwhite
+option gpsdrive        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snwhite
 
-option gpsdrive        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_snupper
+option gpsdrive        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snupper
 
-option gpsdrive        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_snunique
+option gpsdrive        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snunique
 
-option gpsdrive        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_urlbase
+option gpsdrive        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_urlbase
 
-option gpsdrive        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_prefer_shortnames
+option gpsdrive        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_prefer_shortnames
 
-option gpsdrive        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrive.html#fmt_gpsdrive_o_datum
+option gpsdrive        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_datum
 
 file   rw----  gpsdrivetrack           GpsDrive Format for Tracks      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html
-option gpsdrivetrack   snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html
+option gpsdrivetrack   snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snlen
 
-option gpsdrivetrack   snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snwhite
+option gpsdrivetrack   snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snwhite
 
-option gpsdrivetrack   snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snupper
+option gpsdrivetrack   snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snupper
 
-option gpsdrivetrack   snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snunique
+option gpsdrivetrack   snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snunique
 
-option gpsdrivetrack   urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_urlbase
+option gpsdrivetrack   urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_urlbase
 
-option gpsdrivetrack   prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_prefer_shortnames
+option gpsdrivetrack   prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_prefer_shortnames
 
-option gpsdrivetrack   datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_datum
+option gpsdrivetrack   datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_datum
 
 file   rw----  gpsman          GPSman  xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html
-option gpsman  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html
+option gpsman  snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snlen
 
-option gpsman  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_snwhite
+option gpsman  snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snwhite
 
-option gpsman  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_snupper
+option gpsman  snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snupper
 
-option gpsman  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_snunique
+option gpsman  snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snunique
 
-option gpsman  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_urlbase
+option gpsman  urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_urlbase
 
-option gpsman  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_prefer_shortnames
+option gpsman  prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_prefer_shortnames
 
-option gpsman  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsman.html#fmt_gpsman_o_datum
+option gpsman  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_datum
 
 file   rw----  gpsutil         gpsutil gpsutil
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpsutil.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsutil.html
 file   rwrwrw  gpx     gpx     GPX XML gpx
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html
-option gpx     snlen   Length of generated shortnames  integer 32      1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html
+option gpx     snlen   Length of generated shortnames  integer 32      1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_snlen
 
-option gpx     suppresswhite   No whitespace in generated shortnames   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_suppresswhite
+option gpx     suppresswhite   No whitespace in generated shortnames   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_suppresswhite
 
-option gpx     logpoint        Create waypoints from geocache log entries      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_logpoint
+option gpx     logpoint        Create waypoints from geocache log entries      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_logpoint
 
-option gpx     urlbase Base URL for link tag in output string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_urlbase
+option gpx     urlbase Base URL for link tag in output string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_urlbase
 
-option gpx     gpxver  Target GPX version for output   string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_gpxver
+option gpx     gpxver  Target GPX version for output   string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_gpxver
 
-option gpx     humminbirdextensions    Add info (depth) as Humminbird extension        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_humminbirdextensions
+option gpx     humminbirdextensions    Add info (depth) as Humminbird extension        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_humminbirdextensions
 
-option gpx     garminextensions        Add info (depth) as Garmin extension    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_garminextensions
+option gpx     garminextensions        Add info (depth) as Garmin extension    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_garminextensions
 
-option gpx     elevprec        Precision of elevations, number of decimals     integer 3                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_gpx.html#fmt_gpx_o_elevprec
+option gpx     elevprec        Precision of elevations, number of decimals     integer 3                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_elevprec
 
 file   rwrw--  hiketech        gps     HikeTech        hiketech
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_hiketech.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_hiketech.html
 file   rw----  holux   wpo     Holux (gm-100) .wpo Format      holux
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_holux.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_holux.html
 file   r-r---  m241-bin        bin     Holux M-241 (MTK based) Binary File Format      m241-bin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241-bin.html
-option m241-bin        csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241-bin.html#fmt_m241-bin_o_csv
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241-bin.html
+option m241-bin        csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241-bin.html#fmt_m241-bin_o_csv
 
 serial --r---  m241            Holux M-241 (MTK based) download        m241
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241.html
-option m241    erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241.html#fmt_m241_o_erase
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html
+option m241    erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_erase
 
-option m241    erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241.html#fmt_m241_o_erase_only
+option m241    erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_erase_only
 
-option m241    log_enable      Enable logging after download   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241.html#fmt_m241_o_log_enable
+option m241    log_enable      Enable logging after download   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_log_enable
 
-option m241    csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241.html#fmt_m241_o_csv
+option m241    csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_csv
 
-option m241    block_size_kb   Size of blocks in KB to request from device     integer 1       1       64      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_m241.html#fmt_m241_o_block_size_kb
+option m241    block_size_kb   Size of blocks in KB to request from device     integer 1       1       64      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_block_size_kb
 
 file   --r---  vpl             Honda/Acura Navigation System VP Log File Format        vpl
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vpl.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vpl.html
 file   -w----  html    html    HTML Output     html
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_html.html
-option html    stylesheet      Path to HTML style sheet        string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_html.html#fmt_html_o_stylesheet
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html
+option html    stylesheet      Path to HTML style sheet        string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_stylesheet
 
-option html    encrypt Encrypt hints using ROT13       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_html.html#fmt_html_o_encrypt
+option html    encrypt Encrypt hints using ROT13       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_encrypt
 
-option html    logs    Include groundspeak logs if present     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_html.html#fmt_html_o_logs
+option html    logs    Include groundspeak logs if present     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_logs
 
-option html    degformat       Degrees output as 'ddd', 'dmm'(default) or 'dms'        string  dmm                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_html.html#fmt_html_o_degformat
+option html    degformat       Degrees output as 'ddd', 'dmm'(default) or 'dms'        string  dmm                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_degformat
 
-option html    altunits        Units for altitude (f)eet or (m)etres   string  m                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_html.html#fmt_html_o_altunits
+option html    altunits        Units for altitude (f)eet or (m)etres   string  m                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_altunits
 
 file   r-rwr-  humminbird_ht   ht      Humminbird tracks (.ht) humminbird_ht
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_humminbird_ht.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_humminbird_ht.html
 file   rwr-rw  humminbird      hwr     Humminbird waypoints and routes (.hwr)  humminbird
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_humminbird.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_humminbird.html
 file   --rw--  ignrando        rdn     IGN Rando track files   ignrando
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ignrando.html
-option ignrando        index   Index of track to write (if more than one in source)    integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ignrando.html#fmt_ignrando_o_index
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ignrando.html
+option ignrando        index   Index of track to write (if more than one in source)    integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ignrando.html#fmt_ignrando_o_index
 
 file   rw----  igoprimo_poi    upoi    iGo Primo points of interest (.upoi)    xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html
-option igoprimo_poi    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html
+option igoprimo_poi    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snlen
 
-option igoprimo_poi    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snwhite
+option igoprimo_poi    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snwhite
 
-option igoprimo_poi    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snupper
+option igoprimo_poi    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snupper
 
-option igoprimo_poi    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snunique
+option igoprimo_poi    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snunique
 
-option igoprimo_poi    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_urlbase
+option igoprimo_poi    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_urlbase
 
-option igoprimo_poi    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_prefer_shortnames
+option igoprimo_poi    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_prefer_shortnames
 
-option igoprimo_poi    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_datum
+option igoprimo_poi    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_datum
 
 file   rw----  igo2008_poi     upoi    iGO2008 points of interest (.upoi)      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html
-option igo2008_poi     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html
+option igo2008_poi     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snlen
 
-option igo2008_poi     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snwhite
+option igo2008_poi     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snwhite
 
-option igo2008_poi     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snupper
+option igo2008_poi     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snupper
 
-option igo2008_poi     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snunique
+option igo2008_poi     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snunique
 
-option igo2008_poi     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_urlbase
+option igo2008_poi     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_urlbase
 
-option igo2008_poi     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_prefer_shortnames
+option igo2008_poi     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_prefer_shortnames
 
-option igo2008_poi     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo2008_poi.html#fmt_igo2008_poi_o_datum
+option igo2008_poi     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_datum
 
 file   --rw--  igo8    trk     IGO8 .trk       igo8
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo8.html
-option igo8    tracknum        Track identification number     integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo8.html#fmt_igo8_o_tracknum
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html
+option igo8    tracknum        Track identification number     integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html#fmt_igo8_o_tracknum
 
-option igo8    title   Track title     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo8.html#fmt_igo8_o_title
+option igo8    title   Track title     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html#fmt_igo8_o_title
 
-option igo8    description     Track description       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_igo8.html#fmt_igo8_o_description
+option igo8    description     Track description       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html#fmt_igo8_o_description
 
 internal       r-r-r-  random          Internal GPS data generator     random
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_random.html
-option random  points  Generate # points       integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_random.html#fmt_random_o_points
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html
+option random  points  Generate # points       integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html#fmt_random_o_points
 
-option random  seed    Starting seed of the internal number generator  integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_random.html#fmt_random_o_seed
+option random  seed    Starting seed of the internal number generator  integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html#fmt_random_o_seed
 
-option random  nodelay Output realtime points without delay    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_random.html#fmt_random_o_nodelay
+option random  nodelay Output realtime points without delay    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html#fmt_random_o_nodelay
 
 file   --rw--  jtr     jtr     Jelbert GeoTagger data file     jtr
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_jtr.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_jtr.html
 file   --r---  jogmap  xml     Jogmap.de XML format    jogmap
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_jogmap.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_jogmap.html
 file   --rw--  kompass_tk      wp      Kompass (DAV) Track (.tk)       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html
-option kompass_tk      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html
+option kompass_tk      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snlen
 
-option kompass_tk      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_snwhite
+option kompass_tk      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snwhite
 
-option kompass_tk      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_snupper
+option kompass_tk      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snupper
 
-option kompass_tk      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_snunique
+option kompass_tk      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snunique
 
-option kompass_tk      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_urlbase
+option kompass_tk      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_urlbase
 
-option kompass_tk      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_prefer_shortnames
+option kompass_tk      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_prefer_shortnames
 
-option kompass_tk      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_tk.html#fmt_kompass_tk_o_datum
+option kompass_tk      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_datum
 
 file   rw----  kompass_wp      wp      Kompass (DAV) Waypoints (.wp)   xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html
-option kompass_wp      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html
+option kompass_wp      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snlen
 
-option kompass_wp      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_snwhite
+option kompass_wp      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snwhite
 
-option kompass_wp      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_snupper
+option kompass_wp      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snupper
 
-option kompass_wp      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_snunique
+option kompass_wp      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snunique
 
-option kompass_wp      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_urlbase
+option kompass_wp      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_urlbase
 
-option kompass_wp      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_prefer_shortnames
+option kompass_wp      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_prefer_shortnames
 
-option kompass_wp      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_kompass_wp.html#fmt_kompass_wp_o_datum
+option kompass_wp      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_datum
 
 file   rwrwrw  psitrex         KuDaTa PsiTrex text     psitrex
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_psitrex.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_psitrex.html
 file   rwrwrw  lowranceusr     usr     Lowrance USR    lowranceusr
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html
-option lowranceusr     ignoreicons     (USR input) Ignore event marker icons on read   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_ignoreicons
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html
+option lowranceusr     ignoreicons     (USR input) Ignore event marker icons on read   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_ignoreicons
 
-option lowranceusr     writeasicons    (USR output) Treat waypoints as icons on write  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_writeasicons
+option lowranceusr     writeasicons    (USR output) Treat waypoints as icons on write  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_writeasicons
 
-option lowranceusr     merge   (USR output) Merge into one segmented trail     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_merge
+option lowranceusr     merge   (USR output) Merge into one segmented trail     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_merge
 
-option lowranceusr     break   (USR input) Break segments into separate trails boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_break
+option lowranceusr     break   (USR input) Break segments into separate trails boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_break
 
-option lowranceusr     wversion        (USR output) Write version      integer 2       2       4       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_wversion
+option lowranceusr     wversion        (USR output) Write version      integer 2       2       4       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_wversion
 
-option lowranceusr     title   (USR output) Output file title string   string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_title
+option lowranceusr     title   (USR output) Output file title string   string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_title
 
-option lowranceusr     serialnum       (USR output) Device serial number       integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_serialnum
+option lowranceusr     serialnum       (USR output) Device serial number       integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_serialnum
 
-option lowranceusr     description     (USR output) Output file content description    string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lowranceusr.html#fmt_lowranceusr_o_description
+option lowranceusr     description     (USR output) Output file content description    string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_description
 
 file   rw----  maggeo  gs      Magellan Explorist Geocaching   maggeo
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_maggeo.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_maggeo.html
 file   rwrwrw  mapsend         Magellan Mapsend        mapsend
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsend.html
-option mapsend trkver  MapSend version TRK file to generate (3,4)      integer 4       3       4       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapsend.html#fmt_mapsend_o_trkver
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsend.html
+option mapsend trkver  MapSend version TRK file to generate (3,4)      integer 4       3       4       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsend.html#fmt_mapsend_o_trkver
 
 file   rwrwrw  magellanx       upt     Magellan SD files (as for eXplorist)    magellanx
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellanx.html
-option magellanx       deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellanx.html#fmt_magellanx_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellanx.html
+option magellanx       deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellanx.html#fmt_magellanx_o_deficon
 
-option magellanx       maxcmts Max number of comments to write (maxcmts=200)   integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellanx.html#fmt_magellanx_o_maxcmts
+option magellanx       maxcmts Max number of comments to write (maxcmts=200)   integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellanx.html#fmt_magellanx_o_maxcmts
 
 file   rwrwrw  magellan                Magellan SD files (as for Meridian)     magellan
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html
-option magellan        deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html
+option magellan        deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_deficon
 
-option magellan        maxcmts Max number of comments to write (maxcmts=200)   integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_maxcmts
+option magellan        maxcmts Max number of comments to write (maxcmts=200)   integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_maxcmts
 
 serial rwrwrw  magellan                Magellan serial protocol        magellan
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html
-option magellan        deficon Default icon name       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_deficon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html
+option magellan        deficon Default icon name       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_deficon
 
-option magellan        maxcmts Max number of comments to write (maxcmts=200)   integer 200                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_maxcmts
+option magellan        maxcmts Max number of comments to write (maxcmts=200)   integer 200                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_maxcmts
 
-option magellan        baud    Numeric value of bitrate (baud=4800)    integer 4800                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_baud
+option magellan        baud    Numeric value of bitrate (baud=4800)    integer 4800                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_baud
 
-option magellan        noack   Suppress use of handshaking in name of speed    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_noack
+option magellan        noack   Suppress use of handshaking in name of speed    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_noack
 
-option magellan        nukewpt Delete all waypoints    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_magellan.html#fmt_magellan_o_nukewpt
+option magellan        nukewpt Delete all waypoints    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_nukewpt
 
 file   r-r---  ik3d    ikt     MagicMaps IK3D project file (.ikt)      ik3d
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ik3d.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ik3d.html
 file   --rw--  mainnav nav     Mainnav xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html
-option mainnav snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html
+option mainnav snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snlen
 
-option mainnav snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_snwhite
+option mainnav snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snwhite
 
-option mainnav snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_snupper
+option mainnav snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snupper
 
-option mainnav snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_snunique
+option mainnav snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snunique
 
-option mainnav urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_urlbase
+option mainnav urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_urlbase
 
-option mainnav prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_prefer_shortnames
+option mainnav prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_prefer_shortnames
 
-option mainnav datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mainnav.html#fmt_mainnav_o_datum
+option mainnav datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_datum
 
 file   ----r-  tef     xml     Map&Guide 'TourExchangeFormat' XML      tef
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tef.html
-option tef     routevia        Include only via stations in route      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tef.html#fmt_tef_o_routevia
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tef.html
+option tef     routevia        Include only via stations in route      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tef.html#fmt_tef_o_routevia
 
 file   --rw--  mapasia_tr7     tr7     MapAsia track file (.tr7)       mapasia_tr7
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapasia_tr7.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapasia_tr7.html
 file   --r---  mapbar  trk     Mapbar (China) navigation track for Sonim Xp3300        mapbar
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapbar.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapbar.html
 file   rw----  mapfactor       xml     Mapfactor Navigator     mapfactor
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapfactor.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapfactor.html
 file   rw----  mapconverter    txt     Mapopolis.com Mapconverter CSV  xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html
-option mapconverter    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html
+option mapconverter    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snlen
 
-option mapconverter    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_snwhite
+option mapconverter    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snwhite
 
-option mapconverter    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_snupper
+option mapconverter    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snupper
 
-option mapconverter    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_snunique
+option mapconverter    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snunique
 
-option mapconverter    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_urlbase
+option mapconverter    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_urlbase
 
-option mapconverter    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_prefer_shortnames
+option mapconverter    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_prefer_shortnames
 
-option mapconverter    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mapconverter.html#fmt_mapconverter_o_datum
+option mapconverter    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_datum
 
 file   rw----  mxf     mxf     MapTech Exchange Format xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html
-option mxf     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html
+option mxf     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snlen
 
-option mxf     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_snwhite
+option mxf     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snwhite
 
-option mxf     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_snupper
+option mxf     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snupper
 
-option mxf     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_snunique
+option mxf     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snunique
 
-option mxf     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_urlbase
+option mxf     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_urlbase
 
-option mxf     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_prefer_shortnames
+option mxf     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_prefer_shortnames
 
-option mxf     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mxf.html#fmt_mxf_o_datum
+option mxf     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_datum
 
 file   r-r---  mtk_locus               MediaTek Locus  mtk_locus
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk_locus.html
-option mtk_locus       baudrate        Speed in bits per second of serial port (autodetect=0)  integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk_locus.html#fmt_mtk_locus_o_baudrate
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html
+option mtk_locus       baudrate        Speed in bits per second of serial port (autodetect=0)  integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_baudrate
 
-option mtk_locus       download        Download logged fixes   boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk_locus.html#fmt_mtk_locus_o_download
+option mtk_locus       download        Download logged fixes   boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_download
 
-option mtk_locus       erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk_locus.html#fmt_mtk_locus_o_erase
+option mtk_locus       erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_erase
 
-option mtk_locus       status  Show device status      boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk_locus.html#fmt_mtk_locus_o_status
+option mtk_locus       status  Show device status      boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_status
 
-option mtk_locus       enable  Enable logging after download   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk_locus.html#fmt_mtk_locus_o_enable
+option mtk_locus       enable  Enable logging after download   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_enable
 
 file   rwrwrw  mmo     mmo     Memory-Map Navigator overlay files (.mmo)       mmo
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mmo.html
-option mmo     locked  Write items 'locked' [default no]       boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mmo.html#fmt_mmo_o_locked
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html
+option mmo     locked  Write items 'locked' [default no]       boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html#fmt_mmo_o_locked
 
-option mmo     visible Write items 'visible' [default yes]     boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mmo.html#fmt_mmo_o_visible
+option mmo     visible Write items 'visible' [default yes]     boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html#fmt_mmo_o_visible
 
-option mmo     ver     Write files with internal version [n]   integer         17      18      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mmo.html#fmt_mmo_o_ver
+option mmo     ver     Write files with internal version [n]   integer         17      18      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html#fmt_mmo_o_ver
 
 file   rw----  s_and_t txt     Microsoft Streets and Trips 2002-2007   xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html
-option s_and_t snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html
+option s_and_t snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snlen
 
-option s_and_t snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_snwhite
+option s_and_t snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snwhite
 
-option s_and_t snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_snupper
+option s_and_t snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snupper
 
-option s_and_t snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_snunique
+option s_and_t snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snunique
 
-option s_and_t urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_urlbase
+option s_and_t urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_urlbase
 
-option s_and_t prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_prefer_shortnames
+option s_and_t prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_prefer_shortnames
 
-option s_and_t datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_s_and_t.html#fmt_s_and_t_o_datum
+option s_and_t datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_datum
 
 serial r-r---  miniHomer               MiniHomer, a skyTraq Venus 6 based logger (download tracks, waypoints and get/set POI)  miniHomer
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html
-option miniHomer       baud    Baud rate used for download     integer 115200  0       115200  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_baud
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html
+option miniHomer       baud    Baud rate used for download     integer 115200  0       115200  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_baud
 
-option miniHomer       dump-file       Dump raw data to this file      outfile                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_dump-file
+option miniHomer       dump-file       Dump raw data to this file      outfile                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_dump-file
 
-option miniHomer       erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_erase
+option miniHomer       erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_erase
 
-option miniHomer       first-sector    First sector to be read from the device integer 0       0       65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_first-sector
+option miniHomer       first-sector    First sector to be read from the device integer 0       0       65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_first-sector
 
-option miniHomer       initbaud        Baud rate used to init device (0=autodetect)    integer 38400   38400   38400   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_initbaud
+option miniHomer       initbaud        Baud rate used to init device (0=autodetect)    integer 38400   38400   38400   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_initbaud
 
-option miniHomer       last-sector     Last sector to be read from the device (-1: smart read everything)      integer -1      -1      65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_last-sector
+option miniHomer       last-sector     Last sector to be read from the device (-1: smart read everything)      integer -1      -1      65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_last-sector
 
-option miniHomer       no-output       Disable output (useful with erase)      boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_no-output
+option miniHomer       no-output       Disable output (useful with erase)      boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_no-output
 
-option miniHomer       read-at-once    Number of sectors to read at once (0=use single sector mode)    integer 255     0       255     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_read-at-once
+option miniHomer       read-at-once    Number of sectors to read at once (0=use single sector mode)    integer 255     0       255     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_read-at-once
 
-option miniHomer       Home    POI for Home Symbol as lat:lng[:alt]    string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_Home
+option miniHomer       Home    POI for Home Symbol as lat:lng[:alt]    string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Home
 
-option miniHomer       Car     POI for Car Symbol as lat:lng[:alt]     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_Car
+option miniHomer       Car     POI for Car Symbol as lat:lng[:alt]     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Car
 
-option miniHomer       Boat    POI for Boat Symbol as lat:lng[:alt]    string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_Boat
+option miniHomer       Boat    POI for Boat Symbol as lat:lng[:alt]    string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Boat
 
-option miniHomer       Heart   POI for Heart Symbol as lat:lng[:alt]   string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_Heart
+option miniHomer       Heart   POI for Heart Symbol as lat:lng[:alt]   string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Heart
 
-option miniHomer       Bar     POI for Bar Symbol as lat:lng[:alt]     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_Bar
+option miniHomer       Bar     POI for Bar Symbol as lat:lng[:alt]     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Bar
 
-option miniHomer       gps-utc-offset  Seconds that GPS time tracks UTC (0: best guess)        integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_gps-utc-offset
+option miniHomer       gps-utc-offset  Seconds that GPS time tracks UTC (0: best guess)        integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_gps-utc-offset
 
-option miniHomer       gps-week-rollover       GPS week rollover period we're in (-1: best guess)      integer -1                      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_miniHomer.html#fmt_miniHomer_o_gps-week-rollover
+option miniHomer       gps-week-rollover       GPS week rollover period we're in (-1: best guess)      integer -1                      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_gps-week-rollover
 
 file   --r---  garmin_xt               Mobile Garmin XT Track files    garmin_xt
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_xt.html
-option garmin_xt       ftype   Garmin Mobile XT ([ATRK]/STRK)  string  ATRK                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_xt.html#fmt_garmin_xt_o_ftype
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_xt.html
+option garmin_xt       ftype   Garmin Mobile XT ([ATRK]/STRK)  string  ATRK                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_xt.html#fmt_garmin_xt_o_ftype
 
-option garmin_xt       trk_header      Track name processing option ([0]-nrm/1-ign)    integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_garmin_xt.html#fmt_garmin_xt_o_trk_header
+option garmin_xt       trk_header      Track name processing option ([0]-nrm/1-ign)    integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_xt.html#fmt_garmin_xt_o_trk_header
 
 file   rw----  motoactv        csv     Motoactiv CSV   xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html
-option motoactv        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html
+option motoactv        snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snlen
 
-option motoactv        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_snwhite
+option motoactv        snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snwhite
 
-option motoactv        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_snupper
+option motoactv        snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snupper
 
-option motoactv        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_snunique
+option motoactv        snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snunique
 
-option motoactv        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_urlbase
+option motoactv        urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_urlbase
 
-option motoactv        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_prefer_shortnames
+option motoactv        prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_prefer_shortnames
 
-option motoactv        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_motoactv.html#fmt_motoactv_o_datum
+option motoactv        datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_datum
 
 file   ----rw  bcr     bcr     Motorrad Routenplaner (Map&Guide) .bcr files    bcr
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bcr.html
-option bcr     index   Index of route to write (if more than one in source)    integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bcr.html#fmt_bcr_o_index
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html
+option bcr     index   Index of route to write (if more than one in source)    integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_index
 
-option bcr     name    New name for the route  string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bcr.html#fmt_bcr_o_name
+option bcr     name    New name for the route  string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_name
 
-option bcr     radius  Radius of our big earth (default 6371000 meters)        float   6371000                 https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bcr.html#fmt_bcr_o_radius
+option bcr     radius  Radius of our big earth (default 6371000 meters)        float   6371000                 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_radius
 
-option bcr     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_bcr.html#fmt_bcr_o_prefer_shortnames
+option bcr     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_prefer_shortnames
 
 file   r-r---  mtk-bin bin     MTK Logger (iBlue 747,...) Binary File Format   mtk-bin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk-bin.html
-option mtk-bin csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk-bin.html#fmt_mtk-bin_o_csv
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk-bin.html
+option mtk-bin csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk-bin.html#fmt_mtk-bin_o_csv
 
 serial r-r---  mtk             MTK Logger (iBlue 747,Qstarz BT-1000,...) download      mtk
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk.html
-option mtk     erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk.html#fmt_mtk_o_erase
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html
+option mtk     erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_erase
 
-option mtk     erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk.html#fmt_mtk_o_erase_only
+option mtk     erase_only      Only erase device data, do not download anything        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_erase_only
 
-option mtk     log_enable      Enable logging after download   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk.html#fmt_mtk_o_log_enable
+option mtk     log_enable      Enable logging after download   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_log_enable
 
-option mtk     csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk.html#fmt_mtk_o_csv
+option mtk     csv     MTK compatible CSV output file  string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_csv
 
-option mtk     block_size_kb   Size of blocks in KB to request from device     integer 1       1       64      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mtk.html#fmt_mtk_o_block_size_kb
+option mtk     block_size_kb   Size of blocks in KB to request from device     integer 1       1       64      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_block_size_kb
 
 file   --r---  mynav   trc     MyNav TRC format        mynav
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_mynav.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mynav.html
 file   rw----  tpg     tpg     National Geographic Topo .tpg (waypoints)       tpg
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tpg.html
-option tpg     datum   Datum (default=NAD27)   string  N. America 1927 mean                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tpg.html#fmt_tpg_o_datum
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpg.html
+option tpg     datum   Datum (default=NAD27)   string  N. America 1927 mean                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpg.html#fmt_tpg_o_datum
 
 file   --r---  tpo2    tpo     National Geographic Topo 2.x .tpo       tpo2
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tpo2.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpo2.html
 file   r-r-r-  tpo3    tpo     National Geographic Topo 3.x/4.x .tpo   tpo3
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tpo3.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpo3.html
 file   r-----  navicache               Navicache.com XML       navicache
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navicache.html
-option navicache       noretired       Suppress retired geocaches      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navicache.html#fmt_navicache_o_noretired
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navicache.html
+option navicache       noretired       Suppress retired geocaches      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navicache.html#fmt_navicache_o_noretired
 
 file   ----rw  nmn4    rte     Navigon Mobile Navigator .rte files     nmn4
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmn4.html
-option nmn4    index   Index of route to write (if more than one in source)    integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmn4.html#fmt_nmn4_o_index
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmn4.html
+option nmn4    index   Index of route to write (if more than one in source)    integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmn4.html#fmt_nmn4_o_index
 
 file   rw----  navigonwpt              Navigon Waypoints       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html
-option navigonwpt      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html
+option navigonwpt      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snlen
 
-option navigonwpt      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_snwhite
+option navigonwpt      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snwhite
 
-option navigonwpt      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_snupper
+option navigonwpt      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snupper
 
-option navigonwpt      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_snunique
+option navigonwpt      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snunique
 
-option navigonwpt      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_urlbase
+option navigonwpt      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_urlbase
 
-option navigonwpt      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_prefer_shortnames
+option navigonwpt      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_prefer_shortnames
 
-option navigonwpt      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navigonwpt.html#fmt_navigonwpt_o_datum
+option navigonwpt      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_datum
 
 serial rwrwrw  navilink                NaviGPS GT-11/BGT-11 Download   navilink
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html
-option navilink        nuketrk Delete all track points boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html#fmt_navilink_o_nuketrk
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html
+option navilink        nuketrk Delete all track points boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nuketrk
 
-option navilink        nukerte Delete all routes       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html#fmt_navilink_o_nukerte
+option navilink        nukerte Delete all routes       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nukerte
 
-option navilink        nukewpt Delete all waypoints    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html#fmt_navilink_o_nukewpt
+option navilink        nukewpt Delete all waypoints    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nukewpt
 
-option navilink        nukedlg Clear the datalog       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html#fmt_navilink_o_nukedlg
+option navilink        nukedlg Clear the datalog       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nukedlg
 
-option navilink        datalog Read from datalogger buffer     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html#fmt_navilink_o_datalog
+option navilink        datalog Read from datalogger buffer     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_datalog
 
-option navilink        power_off       Command unit to power itself down       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navilink.html#fmt_navilink_o_power_off
+option navilink        power_off       Command unit to power itself down       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_power_off
 
 file   --r---  sbp     sbp     NaviGPS GT-31/BGT-31 datalogger (.sbp)  sbp
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_sbp.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_sbp.html
 file   --r---  sbn     sbn     NaviGPS GT-31/BGT-31 SiRF binary logfile (.sbn) sbn
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_sbn.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_sbn.html
 file   rw----  naviguide       twl     Naviguide binary route file (.twl)      naviguide
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_naviguide.html
-option naviguide       output  'wp' - Create waypoint file , 'rte' - Create route file string  rte                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_naviguide.html#fmt_naviguide_o_output
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_naviguide.html
+option naviguide       output  'wp' - Create waypoint file , 'rte' - Create route file string  rte                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_naviguide.html#fmt_naviguide_o_output
 
-option naviguide       reorder 'n' - Keep the existing wp name, 'y' - rename waypoints string  n                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_naviguide.html#fmt_naviguide_o_reorder
+option naviguide       reorder 'n' - Keep the existing wp name, 'y' - rename waypoints string  n                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_naviguide.html#fmt_naviguide_o_reorder
 
 file   --rw--  navitel_trk     bin     Navitel binary track (.bin)     navitel_trk
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_navitel_trk.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navitel_trk.html
 file   rw----  dna     dna     Navitrak DNA marker format      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html
-option dna     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html
+option dna     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snlen
 
-option dna     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_snwhite
+option dna     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snwhite
 
-option dna     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_snupper
+option dna     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snupper
 
-option dna     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_snunique
+option dna     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snunique
 
-option dna     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_urlbase
+option dna     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_urlbase
 
-option dna     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_prefer_shortnames
+option dna     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_prefer_shortnames
 
-option dna     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dna.html#fmt_dna_o_datum
+option dna     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_datum
 
 file   r-----  netstumbler             NetStumbler Summary File (text) netstumbler
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_netstumbler.html
-option netstumbler     nseicon Non-stealth encrypted icon name string  Red Square                      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_netstumbler.html#fmt_netstumbler_o_nseicon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html
+option netstumbler     nseicon Non-stealth encrypted icon name string  Red Square                      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_nseicon
 
-option netstumbler     nsneicon        Non-stealth non-encrypted icon name     string  Green Square                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_netstumbler.html#fmt_netstumbler_o_nsneicon
+option netstumbler     nsneicon        Non-stealth non-encrypted icon name     string  Green Square                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_nsneicon
 
-option netstumbler     seicon  Stealth encrypted icon name     string  Red Diamond                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_netstumbler.html#fmt_netstumbler_o_seicon
+option netstumbler     seicon  Stealth encrypted icon name     string  Red Diamond                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_seicon
 
-option netstumbler     sneicon Stealth non-encrypted icon name string  Green Diamond                   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_netstumbler.html#fmt_netstumbler_o_sneicon
+option netstumbler     sneicon Stealth non-encrypted icon name string  Green Diamond                   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_sneicon
 
-option netstumbler     snmac   Shortname is MAC address        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_netstumbler.html#fmt_netstumbler_o_snmac
+option netstumbler     snmac   Shortname is MAC address        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_snmac
 
 file   rw----  nima            NIMA/GNIS Geographic Names File xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html
-option nima    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html
+option nima    snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snlen
 
-option nima    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_snwhite
+option nima    snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snwhite
 
-option nima    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_snupper
+option nima    snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snupper
 
-option nima    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_snunique
+option nima    snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snunique
 
-option nima    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_urlbase
+option nima    urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_urlbase
 
-option nima    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_prefer_shortnames
+option nima    prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_prefer_shortnames
 
-option nima    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nima.html#fmt_nima_o_datum
+option nima    datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_datum
 
 file   rwrw--  nmea            NMEA 0183 sentences     nmea
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html
-option nmea    snlen   Max length of waypoint name to write    integer 6       1       64      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html
+option nmea    snlen   Max length of waypoint name to write    integer 6       1       64      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_snlen
 
-option nmea    gprmc   Read/write GPRMC sentences      boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_gprmc
+option nmea    gprmc   Read/write GPRMC sentences      boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gprmc
 
-option nmea    gpgga   Read/write GPGGA sentences      boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_gpgga
+option nmea    gpgga   Read/write GPGGA sentences      boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gpgga
 
-option nmea    gpvtg   Read/write GPVTG sentences      boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_gpvtg
+option nmea    gpvtg   Read/write GPVTG sentences      boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gpvtg
 
-option nmea    gpgsa   Read/write GPGSA sentences      boolean 1                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_gpgsa
+option nmea    gpgsa   Read/write GPGSA sentences      boolean 1                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gpgsa
 
-option nmea    date    Complete date-free tracks with given date (YYYYMMDD).   integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_date
+option nmea    date    Complete date-free tracks with given date (YYYYMMDD).   integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_date
 
-option nmea    get_posn        Return current position as a waypoint   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_get_posn
+option nmea    get_posn        Return current position as a waypoint   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_get_posn
 
-option nmea    pause   Decimal seconds to pause between groups of strings      integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_pause
+option nmea    pause   Decimal seconds to pause between groups of strings      integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_pause
 
-option nmea    append_positioning      Append realtime positioning data to the output file instead of truncating       boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_append_positioning
+option nmea    append_positioning      Append realtime positioning data to the output file instead of truncating       boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_append_positioning
 
-option nmea    baud    Speed in bits per second of serial port (baud=4800)     integer                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_baud
+option nmea    baud    Speed in bits per second of serial port (baud=4800)     integer                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_baud
 
-option nmea    gisteq  Write tracks for Gisteq Phototracker    boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_gisteq
+option nmea    gisteq  Write tracks for Gisteq Phototracker    boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gisteq
 
-option nmea    ignore_fix      Accept position fixes in gpgga marked invalid   boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_nmea.html#fmt_nmea_o_ignore_fix
+option nmea    ignore_fix      Accept position fixes in gpgga marked invalid   boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_ignore_fix
 
 file   rw----  lmx             Nokia Landmark Exchange lmx
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lmx.html
-option lmx     binary  Compact binary representation   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_lmx.html#fmt_lmx_o_binary
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lmx.html
+option lmx     binary  Compact binary representation   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lmx.html#fmt_lmx_o_binary
 
 file   rw-wrw  osm     osm     OpenStreetMap data files        osm
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_osm.html
-option osm     tag     Write additional way tag key/value pairs        string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_osm.html#fmt_osm_o_tag
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html
+option osm     tag     Write additional way tag key/value pairs        string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html#fmt_osm_o_tag
 
-option osm     tagnd   Write additional node tag key/value pairs       string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_osm.html#fmt_osm_o_tagnd
+option osm     tagnd   Write additional node tag key/value pairs       string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html#fmt_osm_o_tagnd
 
-option osm     created_by      Use this value as custom created_by value       string  GPSBabel                        https://www.gpsbabel.org/htmldoc-1.6.0/fmt_osm.html#fmt_osm_o_created_by
+option osm     created_by      Use this value as custom created_by value       string  GPSBabel                        https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html#fmt_osm_o_created_by
 
 file   rwrwrw  ozi             OziExplorer     ozi
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html
-option ozi     pack    Write all tracks into one file  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_pack
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html
+option ozi     pack    Write all tracks into one file  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_pack
 
-option ozi     snlen   Max synthesized shortname length        integer 32      1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_snlen
+option ozi     snlen   Max synthesized shortname length        integer 32      1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snlen
 
-option ozi     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_snwhite
+option ozi     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snwhite
 
-option ozi     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_snupper
+option ozi     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snupper
 
-option ozi     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_snunique
+option ozi     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snunique
 
-option ozi     wptfgcolor      Waypoint foreground color       string  black                   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_wptfgcolor
+option ozi     wptfgcolor      Waypoint foreground color       string  black                   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_wptfgcolor
 
-option ozi     wptbgcolor      Waypoint background color       string  yellow                  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_wptbgcolor
+option ozi     wptbgcolor      Waypoint background color       string  yellow                  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_wptbgcolor
 
-option ozi     proximity       Proximity distance      string  0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_proximity
+option ozi     proximity       Proximity distance      string  0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_proximity
 
-option ozi     altunit Unit used in altitude values    string  feet                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_altunit
+option ozi     altunit Unit used in altitude values    string  feet                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_altunit
 
-option ozi     proxunit        Unit used in proximity values   string  miles                   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_proxunit
+option ozi     proxunit        Unit used in proximity values   string  miles                   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_proxunit
 
-option ozi     codec   codec to use for reading and writing strings (default windows-1252)     string  windows-1252                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ozi.html#fmt_ozi_o_codec
+option ozi     codec   codec to use for reading and writing strings (default windows-1252)     string  windows-1252                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_codec
 
 file   --rw--  pocketfms_bc            PocketFMS breadcrumbs   pocketfms_bc
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_pocketfms_bc.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pocketfms_bc.html
 file   r---r-  pocketfms_fp    xml     PocketFMS flightplan (.xml)     pocketfms_fp
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_pocketfms_fp.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pocketfms_fp.html
 file   rw----  pocketfms_wp    txt     PocketFMS waypoints (.txt)      pocketfms_wp
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_pocketfms_wp.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pocketfms_wp.html
 file   rw--rw  raymarine       rwf     Raymarine Waypoint File (.rwf)  raymarine
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_raymarine.html
-option raymarine       location        Default location        string  My Waypoints                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_raymarine.html#fmt_raymarine_o_location
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_raymarine.html
+option raymarine       location        Default location        string  My Waypoints                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_raymarine.html#fmt_raymarine_o_location
 
 file   --rw--  ricoh   log     Ricoh GPS Log File      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html
-option ricoh   snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html
+option ricoh   snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snlen
 
-option ricoh   snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_snwhite
+option ricoh   snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snwhite
 
-option ricoh   snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_snupper
+option ricoh   snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snupper
 
-option ricoh   snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_snunique
+option ricoh   snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snunique
 
-option ricoh   urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_urlbase
+option ricoh   urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_urlbase
 
-option ricoh   prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_prefer_shortnames
+option ricoh   prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_prefer_shortnames
 
-option ricoh   datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_ricoh.html#fmt_ricoh_o_datum
+option ricoh   datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_datum
 
 file   rw----  cup     cup     See You flight analysis data    xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html
-option cup     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html
+option cup     snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snlen
 
-option cup     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_snwhite
+option cup     snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snwhite
 
-option cup     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_snupper
+option cup     snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snupper
 
-option cup     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_snunique
+option cup     snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snunique
 
-option cup     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_urlbase
+option cup     urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_urlbase
 
-option cup     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_prefer_shortnames
+option cup     prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_prefer_shortnames
 
-option cup     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_cup.html#fmt_cup_o_datum
+option cup     datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_datum
 
 file   rwrwrw  skyforce                Skymap / KMD150 ascii files     skyforce
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skyforce.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skyforce.html
 serial r-r---  skytraq         SkyTraq Venus based loggers (download)  skytraq
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html
-option skytraq erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_erase
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html
+option skytraq erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_erase
 
-option skytraq targetlocation  Set location finder target location as lat,lng  string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_targetlocation
+option skytraq targetlocation  Set location finder target location as lat,lng  string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_targetlocation
 
-option skytraq configlog       Configure logging parameter as tmin:tmax:dmin:dmax      string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_configlog
+option skytraq configlog       Configure logging parameter as tmin:tmax:dmin:dmax      string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_configlog
 
-option skytraq baud    Baud rate used for download     integer 230400  0       230400  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_baud
+option skytraq baud    Baud rate used for download     integer 230400  0       230400  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_baud
 
-option skytraq initbaud        Baud rate used to init device (0=autodetect)    integer 0       4800    230400  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_initbaud
+option skytraq initbaud        Baud rate used to init device (0=autodetect)    integer 0       4800    230400  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_initbaud
 
-option skytraq read-at-once    Number of sectors to read at once (0=use single sector mode)    integer 255     0       255     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_read-at-once
+option skytraq read-at-once    Number of sectors to read at once (0=use single sector mode)    integer 255     0       255     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_read-at-once
 
-option skytraq first-sector    First sector to be read from the device integer 0       0       65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_first-sector
+option skytraq first-sector    First sector to be read from the device integer 0       0       65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_first-sector
 
-option skytraq last-sector     Last sector to be read from the device (-1: smart read everything)      integer -1      -1      65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_last-sector
+option skytraq last-sector     Last sector to be read from the device (-1: smart read everything)      integer -1      -1      65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_last-sector
 
-option skytraq dump-file       Dump raw data to this file      outfile                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_dump-file
+option skytraq dump-file       Dump raw data to this file      outfile                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_dump-file
 
-option skytraq no-output       Disable output (useful with erase)      boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_no-output
+option skytraq no-output       Disable output (useful with erase)      boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_no-output
 
-option skytraq gps-utc-offset  Seconds that GPS time tracks UTC (0: best guess)        integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_gps-utc-offset
+option skytraq gps-utc-offset  Seconds that GPS time tracks UTC (0: best guess)        integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_gps-utc-offset
 
-option skytraq gps-week-rollover       GPS week rollover period we're in (-1: best guess)      integer -1                      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq.html#fmt_skytraq_o_gps-week-rollover
+option skytraq gps-week-rollover       GPS week rollover period we're in (-1: best guess)      integer -1                      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_gps-week-rollover
 
 file   r-r---  skytraq-bin     bin     SkyTraq Venus based loggers Binary File Format  skytraq-bin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq-bin.html
-option skytraq-bin     first-sector    First sector to be read from the file   integer 0       0       65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq-bin.html#fmt_skytraq-bin_o_first-sector
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html
+option skytraq-bin     first-sector    First sector to be read from the file   integer 0       0       65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_first-sector
 
-option skytraq-bin     last-sector     Last sector to be read from the file (-1: read till empty sector)       integer -1      -1      65535   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq-bin.html#fmt_skytraq-bin_o_last-sector
+option skytraq-bin     last-sector     Last sector to be read from the file (-1: read till empty sector)       integer -1      -1      65535   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_last-sector
 
-option skytraq-bin     gps-utc-offset  Seconds that GPS time tracks UTC (0: best guess)        integer 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq-bin.html#fmt_skytraq-bin_o_gps-utc-offset
+option skytraq-bin     gps-utc-offset  Seconds that GPS time tracks UTC (0: best guess)        integer 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_gps-utc-offset
 
-option skytraq-bin     gps-week-rollover       GPS week rollover period we're in (-1: best guess)      integer -1                      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_skytraq-bin.html#fmt_skytraq-bin_o_gps-week-rollover
+option skytraq-bin     gps-week-rollover       GPS week rollover period we're in (-1: best guess)      integer -1                      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_gps-week-rollover
 
 file   ---w--  subrip  srt     SubRip subtitles for video mapping (.srt)       subrip
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_subrip.html
-option subrip  video_time      Video position for which exact GPS time is known (hhmmss[.sss], default is 00:00:00,000)        string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_subrip.html#fmt_subrip_o_video_time
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html
+option subrip  video_time      Video position for which exact GPS time is known (hhmmss[.sss], default is 00:00:00,000)        string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_video_time
 
-option subrip  gps_time        GPS time at position video_time (hhmmss[.sss], default is first timestamp of track)     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_subrip.html#fmt_subrip_o_gps_time
+option subrip  gps_time        GPS time at position video_time (hhmmss[.sss], default is first timestamp of track)     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_gps_time
 
-option subrip  gps_date        GPS date at position video_time (yyyymmdd, default is first timestamp of track) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_subrip.html#fmt_subrip_o_gps_date
+option subrip  gps_date        GPS date at position video_time (yyyymmdd, default is first timestamp of track) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_gps_date
 
-option subrip  format  Format for subtitles    string  %s km/h %e m\n%t %l                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_subrip.html#fmt_subrip_o_format
+option subrip  format  Format for subtitles    string  %s km/h %e m\n%t %l                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_format
 
 file   --rwrw  stmsdf  sdf     Suunto Trek Manager (STM) .sdf files    stmsdf
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_stmsdf.html
-option stmsdf  index   Index of route (if more than one in source)     integer 1       1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_stmsdf.html#fmt_stmsdf_o_index
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmsdf.html
+option stmsdf  index   Index of route (if more than one in source)     integer 1       1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmsdf.html#fmt_stmsdf_o_index
 
 file   rwrwrw  stmwpp  txt     Suunto Trek Manager (STM) WaypointPlus files    stmwpp
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_stmwpp.html
-option stmwpp  index   Index of route/track to write (if more than one in source)      integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_stmwpp.html#fmt_stmwpp_o_index
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmwpp.html
+option stmwpp  index   Index of route/track to write (if more than one in source)      integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmwpp.html#fmt_stmwpp_o_index
 
 file   rwrw--  xol     xol     Swiss Map 25/50/100 (.xol)      xol
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_xol.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xol.html
 file   rw----  openoffice              Tab delimited fields useful for OpenOffice      xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html
-option openoffice      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html
+option openoffice      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snlen
 
-option openoffice      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_snwhite
+option openoffice      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snwhite
 
-option openoffice      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_snupper
+option openoffice      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snupper
 
-option openoffice      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_snunique
+option openoffice      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snunique
 
-option openoffice      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_urlbase
+option openoffice      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_urlbase
 
-option openoffice      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_prefer_shortnames
+option openoffice      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_prefer_shortnames
 
-option openoffice      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_openoffice.html#fmt_openoffice_o_datum
+option openoffice      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_datum
 
 file   r-----  teletype                Teletype [ Get Jonathon Johnson to describe     teletype
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_teletype.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_teletype.html
 file   -w----  text    txt     Textual Output  text
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html
-option text    nosep   Suppress separator lines between waypoints      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html#fmt_text_o_nosep
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html
+option text    nosep   Suppress separator lines between waypoints      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_nosep
 
-option text    encrypt Encrypt hints using ROT13       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html#fmt_text_o_encrypt
+option text    encrypt Encrypt hints using ROT13       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_encrypt
 
-option text    logs    Include groundspeak logs if present     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html#fmt_text_o_logs
+option text    logs    Include groundspeak logs if present     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_logs
 
-option text    degformat       Degrees output as 'ddd', 'dmm'(default) or 'dms'        string  dmm                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html#fmt_text_o_degformat
+option text    degformat       Degrees output as 'ddd', 'dmm'(default) or 'dms'        string  dmm                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_degformat
 
-option text    altunits        Units for altitude (f)eet or (m)etres   string  m                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html#fmt_text_o_altunits
+option text    altunits        Units for altitude (f)eet or (m)etres   string  m                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_altunits
 
-option text    splitoutput     Write each waypoint in a separate file  boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_text.html#fmt_text_o_splitoutput
+option text    splitoutput     Write each waypoint in a separate file  boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_splitoutput
 
 file   ----rw  tomtom_itn      itn     TomTom Itineraries (.itn)       xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html
-option tomtom_itn      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html
+option tomtom_itn      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snlen
 
-option tomtom_itn      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snwhite
+option tomtom_itn      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snwhite
 
-option tomtom_itn      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snupper
+option tomtom_itn      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snupper
 
-option tomtom_itn      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snunique
+option tomtom_itn      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snunique
 
-option tomtom_itn      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_urlbase
+option tomtom_itn      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_urlbase
 
-option tomtom_itn      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_prefer_shortnames
+option tomtom_itn      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_prefer_shortnames
 
-option tomtom_itn      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn.html#fmt_tomtom_itn_o_datum
+option tomtom_itn      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_datum
 
 file   ----rw  tomtom_itn_places       itn     TomTom Places Itineraries (.itn)        xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html
-option tomtom_itn_places       snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html
+option tomtom_itn_places       snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snlen
 
-option tomtom_itn_places       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snwhite
+option tomtom_itn_places       snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snwhite
 
-option tomtom_itn_places       snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snupper
+option tomtom_itn_places       snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snupper
 
-option tomtom_itn_places       snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snunique
+option tomtom_itn_places       snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snunique
 
-option tomtom_itn_places       urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_urlbase
+option tomtom_itn_places       urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_urlbase
 
-option tomtom_itn_places       prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_prefer_shortnames
+option tomtom_itn_places       prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_prefer_shortnames
 
-option tomtom_itn_places       datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_datum
+option tomtom_itn_places       datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_datum
 
 file   rw----  tomtom_asc      asc     TomTom POI file (.asc)  xcsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html
-option tomtom_asc      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snlen
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html
+option tomtom_asc      snlen   Max synthesized shortname length        integer         1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snlen
 
-option tomtom_asc      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snwhite
+option tomtom_asc      snwhite Allow whitespace synth. shortnames      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snwhite
 
-option tomtom_asc      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snupper
+option tomtom_asc      snupper UPPERCASE synth. shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snupper
 
-option tomtom_asc      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snunique
+option tomtom_asc      snunique        Make synth. shortnames unique   boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snunique
 
-option tomtom_asc      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_urlbase
+option tomtom_asc      urlbase Basename prepended to URL on output     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_urlbase
 
-option tomtom_asc      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_prefer_shortnames
+option tomtom_asc      prefer_shortnames       Use shortname instead of description    boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_prefer_shortnames
 
-option tomtom_asc      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom_asc.html#fmt_tomtom_asc_o_datum
+option tomtom_asc      datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_datum
 
 file   rw----  tomtom  ov2     TomTom POI file (.ov2)  tomtom
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tomtom.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom.html
 file   rw----  tmpro   tmpro   TopoMapPro Places File  tmpro
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tmpro.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tmpro.html
 file   rwrw--  dmtlog  trl     TrackLogs digital mapping (.trl)        dmtlog
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dmtlog.html
-option dmtlog  index   Index of track (if more than one in source)     integer 1       1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_dmtlog.html#fmt_dmtlog_o_index
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dmtlog.html
+option dmtlog  index   Index of track (if more than one in source)     integer 1       1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dmtlog.html#fmt_dmtlog_o_index
 
 file   rw----  tiger           U.S. Census Bureau Tiger Mapping Service        tiger
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html
-option tiger   nolabels        Suppress labels on generated pins       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_nolabels
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html
+option tiger   nolabels        Suppress labels on generated pins       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_nolabels
 
-option tiger   genurl  Generate file with lat/lon for centering map    outfile                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_genurl
+option tiger   genurl  Generate file with lat/lon for centering map    outfile                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_genurl
 
-option tiger   margin  Margin for map.  Degrees or percentage  float   15%                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_margin
+option tiger   margin  Margin for map.  Degrees or percentage  float   15%                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_margin
 
-option tiger   snlen   Max shortname length when used with -s  integer 10      1               https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_snlen
+option tiger   snlen   Max shortname length when used with -s  integer 10      1               https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_snlen
 
-option tiger   oldthresh       Days after which points are considered old      integer 14                      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_oldthresh
+option tiger   oldthresh       Days after which points are considered old      integer 14                      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_oldthresh
 
-option tiger   oldmarker       Marker type for old points      string  redpin                  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_oldmarker
+option tiger   oldmarker       Marker type for old points      string  redpin                  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_oldmarker
 
-option tiger   newmarker       Marker type for new points      string  greenpin                        https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_newmarker
+option tiger   newmarker       Marker type for new points      string  greenpin                        https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_newmarker
 
-option tiger   suppresswhite   Suppress whitespace in generated shortnames     boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_suppresswhite
+option tiger   suppresswhite   Suppress whitespace in generated shortnames     boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_suppresswhite
 
-option tiger   unfoundmarker   Marker type for unfound points  string  bluepin                 https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_unfoundmarker
+option tiger   unfoundmarker   Marker type for unfound points  string  bluepin                 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_unfoundmarker
 
-option tiger   xpixels Width in pixels of map  integer 768                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_xpixels
+option tiger   xpixels Width in pixels of map  integer 768                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_xpixels
 
-option tiger   ypixels Height in pixels of map integer 768                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_ypixels
+option tiger   ypixels Height in pixels of map integer 768                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_ypixels
 
-option tiger   iconismarker    The icon description is already the marker      boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_tiger.html#fmt_tiger_o_iconismarker
+option tiger   iconismarker    The icon description is already the marker      boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_iconismarker
 
 file   rwrwrw  unicsv          Universal csv with field structure in first line        unicsv
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html
-option unicsv  datum   GPS datum (def. WGS 84) string  WGS 84                  https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_datum
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html
+option unicsv  datum   GPS datum (def. WGS 84) string  WGS 84                  https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_datum
 
-option unicsv  grid    Write position using this grid. string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_grid
+option unicsv  grid    Write position using this grid. string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_grid
 
-option unicsv  utc     Write timestamps with offset x to UTC time      integer         -23     +23     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_utc
+option unicsv  utc     Write timestamps with offset x to UTC time      integer         -23     +23     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_utc
 
-option unicsv  format  Write name(s) of format(s) from input session(s)        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_format
+option unicsv  format  Write name(s) of format(s) from input session(s)        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_format
 
-option unicsv  filename        Write filename(s) from input session(s) boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_filename
+option unicsv  filename        Write filename(s) from input session(s) boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_filename
 
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_prec
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_prec
 
-option unicsv  fields  Name and order of input fields, separated by '+'        string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_fields
+option unicsv  fields  Name and order of input fields, separated by '+'        string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_fields
 
-option unicsv  codec   codec to use for reading and writing strings (default UTF-8)    string  UTF-8                   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_unicsv.html#fmt_unicsv_o_codec
+option unicsv  codec   codec to use for reading and writing strings (default UTF-8)    string  UTF-8                   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_codec
 
 file   -w----  vcard   vcf     Vcard Output (for iPod) vcard
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vcard.html
-option vcard   encrypt Encrypt hints using ROT13       boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vcard.html#fmt_vcard_o_encrypt
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vcard.html
+option vcard   encrypt Encrypt hints using ROT13       boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vcard.html#fmt_vcard_o_encrypt
 
 file   --rw--  vidaone gpb     VidaOne GPS for Pocket PC (.gpb)        vidaone
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vidaone.html
-option vidaone ver     Version of VidaOne file to read or write (1 or 2)       integer 1       1       2       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vidaone.html#fmt_vidaone_o_ver
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vidaone.html
+option vidaone ver     Version of VidaOne file to read or write (1 or 2)       integer 1       1       2       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vidaone.html#fmt_vidaone_o_ver
 
 file   rwrwrw  vitosmt smt     Vito Navigator II tracks        vitosmt
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vitosmt.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vitosmt.html
 file   --r---  vitovtt vtt     Vito SmartMap tracks (.vtt)     vitovtt
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_vitovtt.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vitovtt.html
 file   r-----  wfff    xml     WiFiFoFum 2.0 for PocketPC XML  wfff
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wfff.html
-option wfff    aicicon Infrastructure closed icon name string  Red Square                      https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wfff.html#fmt_wfff_o_aicicon
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html
+option wfff    aicicon Infrastructure closed icon name string  Red Square                      https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_aicicon
 
-option wfff    aioicon Infrastructure open icon name   string  Green Square                    https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wfff.html#fmt_wfff_o_aioicon
+option wfff    aioicon Infrastructure open icon name   string  Green Square                    https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_aioicon
 
-option wfff    ahcicon Ad-hoc closed icon name string  Red Diamond                     https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wfff.html#fmt_wfff_o_ahcicon
+option wfff    ahcicon Ad-hoc closed icon name string  Red Diamond                     https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_ahcicon
 
-option wfff    ahoicon Ad-hoc open icon name   string  Green Diamond                   https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wfff.html#fmt_wfff_o_ahoicon
+option wfff    ahoicon Ad-hoc open icon name   string  Green Diamond                   https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_ahoicon
 
-option wfff    snmac   Shortname is MAC address        boolean                         https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wfff.html#fmt_wfff_o_snmac
+option wfff    snmac   Shortname is MAC address        boolean                         https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_snmac
 
 file   r-r---  wintec_tes      tes     Wintec TES file wintec_tes
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wintec_tes.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wintec_tes.html
 file   --r---  wbt-bin bin     Wintec WBT-100/200 Binary File Format   wbt-bin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wbt-bin.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt-bin.html
 serial r-r---  wbt             Wintec WBT-100/200 GPS Download wbt
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wbt.html
-option wbt     erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wbt.html#fmt_wbt_o_erase
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt.html
+option wbt     erase   Erase device data after download        boolean 0                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt.html#fmt_wbt_o_erase
 
 file   --r---  wbt-tk1 tk1     Wintec WBT-201/G-Rays 2 Binary File Format      wbt-tk1
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_wbt-tk1.html
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt-tk1.html
 serial r-r---  itracku         XAiOX iTrackU Logger    itracku
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_itracku.html
-option itracku backup  Appends the input to a backup file      string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_itracku.html#fmt_itracku_o_backup
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku.html
+option itracku backup  Appends the input to a backup file      string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku.html#fmt_itracku_o_backup
 
-option itracku new     Only waypoints that are not the backup file     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_itracku.html#fmt_itracku_o_new
+option itracku new     Only waypoints that are not the backup file     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku.html#fmt_itracku_o_new
 
 file   rwrw--  itracku-bin     bin     XAiOX iTrackU Logger Binary File Format itracku-bin
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_itracku-bin.html
-option itracku-bin     backup  Appends the input to a backup file      string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_itracku-bin.html#fmt_itracku-bin_o_backup
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku-bin.html
+option itracku-bin     backup  Appends the input to a backup file      string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku-bin.html#fmt_itracku-bin_o_backup
 
-option itracku-bin     new     Only waypoints that are not the backup file     string                          https://www.gpsbabel.org/htmldoc-1.6.0/fmt_itracku-bin.html#fmt_itracku-bin_o_new
+option itracku-bin     new     Only waypoints that are not the backup file     string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku-bin.html#fmt_itracku-bin_o_new
 
 file   r-----  yahoo           Yahoo Geocode API data  yahoo
-       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_yahoo.html
-option yahoo   addrsep String to separate concatenated address fields (default=", ")   string  ,                       https://www.gpsbabel.org/htmldoc-1.6.0/fmt_yahoo.html#fmt_yahoo_o_addrsep
+       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_yahoo.html
+option yahoo   addrsep String to separate concatenated address fields (default=", ")   string  ,                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_yahoo.html#fmt_yahoo_o_addrsep
 
index 491bb94b092d1dff2484a8413f244cea115ce0fe..3eadff6a014b18d70bf6b832e63d363fd03ce06a 100644 (file)
@@ -7,7 +7,8 @@
 # the GUI and the document.
 # We do a compare_nole as specific whitespace is part of deserialization.
 gpsbabel -^3 > ${TMPDIR}/format3.txt
-compare_nole ${REFERENCE}/format3.txt ${TMPDIR}/format3.txt
+sed 's,https://www.gpsbabel.org/htmldoc-.[^/]*/,https://www.gpsbabel.org/WEB_DOC_DIR/,' ${TMPDIR}/format3.txt >${TMPDIR}/format3.fiddled.txt
+compare_nole ${REFERENCE}/format3.txt ${TMPDIR}/format3.fiddled.txt
 gpsbabel -^2 > ${TMPDIR}/format2.txt
 compare_nole ${REFERENCE}/format2.txt ${TMPDIR}/format2.txt
 gpsbabel -^1 > ${TMPDIR}/format1.txt
@@ -15,7 +16,8 @@ compare_nole ${REFERENCE}/format1.txt ${TMPDIR}/format1.txt
 gpsbabel -^0 > ${TMPDIR}/format0.txt
 compare_nole ${REFERENCE}/format0.txt ${TMPDIR}/format0.txt
 gpsbabel -%1 > ${TMPDIR}/filter1.txt
-compare_nole ${REFERENCE}/filter1.txt ${TMPDIR}/filter1.txt
+sed 's,https://www.gpsbabel.org/htmldoc-.[^/]*/,https://www.gpsbabel.org/WEB_DOC_DIR/,' ${TMPDIR}/filter1.txt >${TMPDIR}/filter1.fiddled.txt
+compare_nole ${REFERENCE}/filter1.txt ${TMPDIR}/filter1.fiddled.txt
 gpsbabel -%0 > ${TMPDIR}/filter0.txt
 compare_nole ${REFERENCE}/filter0.txt ${TMPDIR}/filter0.txt
 
old mode 100755 (executable)
new mode 100644 (file)